Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,686 for lets (0.11 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/client.go

    */
    
    package resource
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/rest"
    )
    
    // TODO require negotiatedSerializer.  leaving it optional lets us plumb current behavior and deal with the difference after major plumbing is complete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:01:18 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    // clusters.
    //
    // This helps us in two ways:
    //
    //  - It reduces dependencies between clusters.  Let's say a constant C is used
    //    by nodes X and Y.  If X and Y are put in different clusters (for whatever
    //    reason) Y's cluster now has to wait for all the operations in X's cluster
    //    to finish before it starts running.
    //
    //  - It lets us create bigger clusters in multi-GPU benchmarks.  Consider the
    //    following graph:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/str/str.go

    		}
    	}
    	return x
    }
    
    // ToFold returns a string with the property that
    //
    //	strings.EqualFold(s, t) iff ToFold(s) == ToFold(t)
    //
    // This lets us test a large set of strings for fold-equivalent
    // duplicates without making a quadratic number of calls
    // to EqualFold. Note that strings.ToUpper and strings.ToLower
    // do not have the desired property in some corner cases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/volume/validation/pv_validation.go

    		pv.Spec.AzureFile != nil ||
    		pv.Spec.VsphereVolume != nil ||
    		pv.Spec.AzureDisk != nil ||
    		pv.Spec.PhotonPersistentDisk != nil {
    		return allErrs
    	}
    	// any other type if mount option is present lets return error
    	if _, ok := pv.Annotations[api.MountOptionAnnotation]; ok {
    		metaField := field.NewPath("metadata")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue8048.go

    	test1()
    	test2()
    	test3()
    }
    
    func test1() {
    	// test1f will panic without its own defer.
    	// The runtime.GC checks that we can walk the stack
    	// at that point and not get confused.
    	// The recover lets test1 exit normally.
    	defer func() {
    		runtime.GC()
    		recover()
    	}()
    	test1f()
    }
    
    func test1f() {
    	// Because b == false, the if does not execute,
    	// so x == nil, so the println(*x) faults reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    > Task :app:testClasses UP-TO-DATE
    > Task :app:test FROM-CACHE
    > Task :app:check UP-TO-DATE
    > Task :app:build
    
    BUILD SUCCESSFUL in 525ms
    8 actionable tasks: 5 executed, 3 from cache
    ----
    
    Gradle lets us know the outcome of each task in the console output:
    
    - `FROM-CACHE` - tasks have been fetched from the local build cache.
    - `UP-TO-DATE` - tasks that used incremental build and were not re-run.
    
    To summarize:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/errors/example_test.go

    func ExampleNew() {
    	err := errors.New("emit macho dwarf: elf header corrupted")
    	if err != nil {
    		fmt.Print(err)
    	}
    	// Output: emit macho dwarf: elf header corrupted
    }
    
    // The fmt package's Errorf function lets us use the package's formatting
    // features to create descriptive error messages.
    func ExampleNew_errorf() {
    	const name, id = "bimmler", 17
    	err := fmt.Errorf("user %q (id %d) not found", name, id)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 02:08:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_server_journal_windows.go

    		if _, ok := err.(*exec.ExitError); ok {
    			return false
    		}
    		// Other errors imply that CombinedOutput failed before the command was executed,
    		// so lets to get the logs using Get-WinEvent at the call site instead of assuming
    		// the service is logging to a file
    	}
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 15:54:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AggregateFuture.java

          /*
           * We'll call the user callback or collect the values only when all inputs complete,
           * regardless of whether some failed. This lets us avoid calling expensive methods like
           * Future.get() when we don't need to (specifically, for whenAllComplete().call*()), and it
           * lets all futures share the same listener.
           *
           * We store `localFutures` inside the listener because `this.futures` might be nulled out by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/internal/fuzz/coverage.go

    	"fmt"
    	"math/bits"
    )
    
    // ResetCoverage sets all of the counters for each edge of the instrumented
    // source code to 0.
    func ResetCoverage() {
    	cov := coverage()
    	clear(cov)
    }
    
    // SnapshotCoverage copies the current counter values into coverageSnapshot,
    // preserving them for later inspection. SnapshotCoverage also rounds each
    // counter down to the nearest power of two. This lets the coordinator store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top