Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for findMin (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    As described above, when Gradle resolves a configuration and a dependency in the configuration does not have a variant with the requested attributes, Gradle tries to find a chain of artifact transforms to create the variant.
    The process of finding a matching chain of artifact transforms is called _artifact transform selection_.
    Each registered transform converts from a set of attributes to a set of attributes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/lookup.go

    	if name == "_" {
    		return // blank fields/methods are never found
    	}
    
    	// Importantly, we must not call under before the call to deref below (nor
    	// does deref call under), as doing so could incorrectly result in finding
    	// methods of the pointer base type when T is a (*Named) pointer type.
    	typ, isPtr := deref(T)
    
    	// *typ where typ is an interface (incl. a type parameter) has no methods.
    	if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/go/types/lookup.go

    	if name == "_" {
    		return // blank fields/methods are never found
    	}
    
    	// Importantly, we must not call under before the call to deref below (nor
    	// does deref call under), as doing so could incorrectly result in finding
    	// methods of the pointer base type when T is a (*Named) pointer type.
    	typ, isPtr := deref(T)
    
    	// *typ where typ is an interface (incl. a type parameter) has no methods.
    	if isPtr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge_test.go

    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    		t.Run("Force/"+test.name, func(t *testing.T) {
    			mark, find, _ := setup(t, true)
    			test.mark(mark)
    			test.find(find) // Finding should always work when forced.
    			find(0, 0)      // The test should always fully exhaust the index.
    		})
    	}
    	t.Run("Bg/MarkInterleaved", func(t *testing.T) {
    		mark, find, nextGen := setup(t, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/volume/emptydir/empty_dir_test.go

    	}
    
    	// Need to create the subdirectory
    	os.MkdirAll(mounter.GetPath(), 0755)
    
    	expectedEmptyDirUsage, err := volumetest.FindEmptyDirectoryUsageOnTmpfs()
    	if err != nil {
    		t.Errorf("Unexpected error finding expected empty directory usage on tmpfs: %v", err)
    	}
    
    	// TODO(pwittroc): Move this into a reusable testing utility
    	metrics, err := mounter.GetMetrics()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		return false, fmt.Errorf("couldn't get key for object %+v: %w", obj, err)
    	}
    	oldObj, found, err := store.Get(obj)
    	if err != nil {
    		return false, fmt.Errorf("error finding %s %q in controller cache: %w", className, objName, err)
    	}
    
    	objAccessor, err := meta.Accessor(obj)
    	if err != nil {
    		return false, err
    	}
    	if !found {
    		// This is a new object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/cache.go

    		gocachetest.IncNonDefault()
    		DebugTest = true
    	}
    }
    
    // Get looks up the action ID in the cache,
    // returning the corresponding output ID and file size, if any.
    // Note that finding an output ID does not guarantee that the
    // saved file for that output ID is still available.
    func (c *DiskCache) Get(id ActionID) (Entry, error) {
    	if verify {
    		return Entry{}, &entryNotFoundError{Err: errVerifyMode}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/doc/doc_test.go

    			}
    		}
    	}
    }
    
    // Test the code to look up packages when given two args. First test case is
    //
    //	go doc binary BigEndian
    //
    // This needs to find encoding/binary.BigEndian, which means
    // finding the package encoding/binary given only "binary".
    // Second case is
    //
    //	go doc rand Float64
    //
    // which again needs to find math/rand and not give up after crypto/rand,
    // which has no such function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. test/prove.go

    	for i := 0; i < len(b); i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1$"
    		// This tests for i <= cap, which we can only prove
    		// using the derived relation between len and cap.
    		// This depends on finding the contradiction, since we
    		// don't query this condition directly.
    		useSlice(b[:i]) // ERROR "Proved IsSliceInBounds$"
    	}
    }
    
    func f18(b []int, x int, y uint) {
    	_ = b[x]
    	_ = b[y]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    	flag.Var(&fuzzDuration, "test.fuzztime", "time to spend fuzzing; default is to run indefinitely")
    	flag.Var(&minimizeDuration, "test.fuzzminimizetime", "time to spend minimizing a value after finding a failing input")
    
    	fuzzCacheDir = flag.String("test.fuzzcachedir", "", "directory where interesting fuzzing inputs are stored (for use only by cmd/go)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top