Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 577 for completely (0.21 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

            IsCompilableCall(call, lib_runtime, stack_trace, encapsulating_function,
                             uncompilable_nodes);
      }
      return is_compilable;
    }
    
    // Tests whether 'while_node' is a completely compilable loop.
    // Every operator in the condition and body functions must be compilable for a
    // while loop to be compilable.
    bool RecursiveCompilabilityChecker::IsCompilableWhile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle_test.go

    		t.Errorf("Basic trustbundle update test failed. Callback value is %v", cbCounter)
    	}
    
    	// Add Second Cert update
    	// ensure intermediate CA certs accepted, it replaces the first completely, and lib dedupes duplicate cert
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{intermediateCACert, intermediateCACert}},
    		Source:            SourceMeshConfig,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
      // from putting the cluster in a state which cannot be recovered from without completely
      // disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
      // on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    		/cpu/classes metrics.
    
    	/gc/cycles/automatic:gc-cycles
    		Count of completed GC cycles generated by the Go runtime.
    
    	/gc/cycles/forced:gc-cycles
    		Count of completed GC cycles forced by the application.
    
    	/gc/cycles/total:gc-cycles
    		Count of all completed GC cycles.
    
    	/gc/gogc:percent
    		Heap size target percentage configured by the user, otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    				t.Error(err)
    			}
    		})
    	}
    }
    
    func TestCacheIntervalNextFromWatchCache(t *testing.T) {
    	// Have the capacity such that it facilitates
    	// filling the interval buffer more than once
    	// completely and then some more - 10 here is
    	// arbitrary.
    	const capacity = 2*bufferSize + 10
    
    	cases := []struct {
    		name string
    		// The total number of events that the watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/transform/transform.go

    				// detect this and break out of the loop with a fatal error.
    				lastFull = true
    				continue
    			}
    			// The destination buffer was too small, but is completely empty.
    			// Return a fatal error as this transformation can never complete.
    			c.fatalError(i, errShortInternal)
    		case ErrShortSrc:
    			if i == 0 {
    				// Save ErrShortSrc in err. All other errors take precedence.
    				err = ErrShortSrc
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                Arrays.asList(ValidationReportLevel.INLINE, ValidationReportLevel.BRIEF));
    
        private enum ValidationReportLevel {
            NONE, // mute validation completely (validation issue collection still happens, it is just not reported!)
            INLINE, // inline, each "internal" problem one line next to mojo invocation
            SUMMARY, // at end, list of plugin GAVs along with ANY validation issues
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/os/types_windows.go

    // from windows.FILE_ID_BOTH_DIR_INFO d into the newly created fileStat.
    func newFileStatFromFileIDBothDirInfo(d *windows.FILE_ID_BOTH_DIR_INFO) *fileStat {
    	// The FILE_ID_BOTH_DIR_INFO MSDN documentations isn't completely correct.
    	// FileAttributes can contain any file attributes that is currently set on the file,
    	// not just the ones documented.
    	// EaSize contains the reparse tag if the file is a reparse point.
    	return &fileStat{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    This is accessible from a build script, an init script, or via the embedding API.
    Note that this completely disables Gradle's default output.
    Below is an example init script that changes how task execution and build completion are logged:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *        if it matches 'override', then set mergeSelf == false...the dominant node suppresses the recessive one
         *        completely.</li>
         *   <li> otherwise, use the default value for mergeSelf, which is true...this is the same as specifying
         *        'combine.self' == 'merge' as an attribute of the dominant root node.</li>
         *   </ol></li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top