Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for drill (0.11 sec)

  1. src/encoding/gob/encoder.go

    		// we need to tell the other side that the base type is a GobEncoder.
    		return enc.sendActualType(w, state, ut, ut.base)
    	}
    
    	// It's a concrete value, so drill down to the base type.
    	switch rt := ut.base; rt.Kind() {
    	default:
    		// Basic types and interfaces do not need to be described.
    		return
    	case reflect.Slice:
    		// If it's []uint8, don't send; it's considered basic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission.go

    	}
    
    	// the request must come from a node with the same name as the lease
    	if a.GetOperation() == admission.Create {
    		// a.GetName() won't return the name on create, so we drill down to the proposed object
    		lease, ok := a.GetObject().(*coordapi.Lease)
    		if !ok {
    			return admission.NewForbidden(a, fmt.Errorf("unexpected type %T", a.GetObject()))
    		}
    		if lease.Name != nodeName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray_test.go

    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    			"is the time for all good men to come to the aid of their",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    		l, r := lorig, nr[i]
    
    		// Do not generate 'x = x' during return. See issue 4014.
    		if op == ir.ORETURN && ir.SameSafeExpr(l, r) {
    			continue
    		}
    
    		// Save subexpressions needed on left side.
    		// Drill through non-dereferences.
    		for {
    			// If an expression has init statements, they must be evaluated
    			// before any of its saved sub-operands (#45706).
    			// TODO(mdempsky): Disallow init statements on lvalues.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal.go

    	}
    
    	if !val.IsValid() {
    		return nil
    	}
    	if finfo != nil && finfo.flags&fOmitEmpty != 0 && isEmptyValue(val) {
    		return nil
    	}
    
    	// Drill into interfaces and pointers.
    	// This can turn into an infinite loop given a cyclic chain,
    	// but it matches the Go 1 behavior.
    	for val.Kind() == reflect.Interface || val.Kind() == reflect.Pointer {
    		if val.IsNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Streams.java

          }
    
          // Many spliterators will have trySplits that are SUBSIZED even if they are not themselves
          // SUBSIZED.
          if (spliterator.hasCharacteristics(Spliterator.SUBSIZED)) {
            // we can drill down to exactly the smallest nonempty spliterator
            while (true) {
              Spliterator<T> prefix = spliterator.trySplit();
              if (prefix == null || prefix.getExactSizeIfKnown() == 0) {
                break;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Many of the objects, functions and properties you use in your build scripts come from the Gradle API and the APIs of the applied plugins.
    
    TIP: You can use the link:{kotlinDslPath}/[Kotlin DSL reference] search functionality to drill through the available members.
    
    === Script file names
    
    * Groovy DSL script files use the `.gradle` file name extension.
    * Kotlin DSL script files use the `.gradle.kts` file name extension.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Upon failure to serialize the state required to run the tasks, an HTML report of detected problems is generated.
    The Gradle failure output includes a clickable link to the report.
    This report is useful and allows you to drill down into problems, understand what is causing them.
    
    Let's look at a simple example build script that contains a couple problems:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. ci/official/requirements_updater/requirements.in

    numpy ~= 1.23.5 ; python_version <= "3.11"
    numpy ~= 1.26.0 ; python_version >= "3.12"
    wheel ~= 0.41.2
    h5py >= 3.10.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.4.0, < 0.5.0
    
    # Install tensorboard, and keras
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 834 bytes
    - Viewed (0)
  10. requirements_lock_3_12.txt

        --hash=sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519 \
        --hash=sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561
        # via requests
    dill==0.3.7 \
        --hash=sha256:76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e \
        --hash=sha256:cc1c8b182eb3013e24bd475ff2e9295af86c1a38eb1aff128dac8962a9ce3c03
        # via -r requirements.in
    dm-tree==0.1.8 \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top