Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for crack (0.05 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    	scrollbar-width: auto;
    	scrollbar-color: #686868 #e7e7e9;
    }
    
    /* Works on Chrome, Edge, and Safari */
    .docs-navigation::-webkit-scrollbar {
    	width: 12px;
    }
    
    .docs-navigation::-webkit-scrollbar-track {
    	background: #e7e7e9;
    }
    
    .docs-navigation::-webkit-scrollbar-thumb {
    	background-color: #686868;
    	border-radius: 20px;
    	border: 3px #686868;
    }
    
    .dark-mode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    //	// If err is nil, buf[2:] will contain the built bytes.
    type Builder struct {
    	// msg is the storage for the message being built.
    	msg []byte
    
    	// section keeps track of the current section being built.
    	section section
    
    	// header keeps track of what should go in the header when Finish is
    	// called.
    	header header
    
    	// start is the starting index of the bytes allocated in msg for header.
    	start int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	// suspended or disabled on this bucket. RenameData will replace
    	// the 'null' version. We add a free-version to track its tiered
    	// content for asynchronous deletion.
    	//
    	// Note: RestoreObject and HealObject requests don't end up replacing the
    	// null version and therefore don't require the free-version to track
    	// anything
    	if fi.VersionID == "" && !fi.IsRestoreObjReq() && !fi.Healing() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. pkg/kubelet/pod_workers.go

    		}
    	}
    	// StartTime is not copied - that is purely for tracking latency of config propagation
    	// from kubelet to pod worker.
    }
    
    // podWorkers keeps track of operations on pods and ensures each pod is
    // reconciled with the container runtime and other subsystems. The worker
    // also tracks which pods are in flight for starting, which pods are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    		signalToRankFunc[evictionapi.SignalContainerFsInodesFree] = signalToRankFunc[evictionapi.SignalImageFsInodesFree]
    
    		// If both imagefs and container fs are on separate disks
    		// we want to track the writeable layer in containerfs signals.
    	} else if withImageFs && imageContainerSplitFs {
    		// with an imagefs, nodefs pod rank func for eviction only includes logs and local volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	})
    	if err != nil {
    		panic(err)
    	}
    	return result
    }
    
    func BenchmarkRatcheting(b *testing.B) {
    	// Walk directory with CRDs, for each file parse YAML with multiple CRDs in it.
    	// Keep track in a map a validator for each unique gvk
    	crdObjects := loadObjects("ratcheting_test_cases/crds")
    	invalidFiles := loadObjects("ratcheting_test_cases/invalid")
    	validFiles := loadObjects("ratcheting_test_cases/valid")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For up-to-date checks Gradle relies on tracking the state of the inputs and the outputs of a task.
    Gradle used to ignore unreadable files in the input or outputs to support certain use-cases, although it cannot track their state.
    Declaring input or output directories on tasks which contain unreadable content has been deprecated and these use-cases are now supported by declaring the task to be untracked.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
      // store to each resource. Non-existent entry indicates that a resource has
      // not been stored to yet.
      llvm::SmallDenseMap<Value, TF::AssignVariableOp>
          resource_handle_to_last_store_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "watch":
    		forceWatch := true
    		return handlers.ListResource(storage, storage, requestScope, forceWatch, r.minRequestTimeout)
    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

        @CheckForNull private Iterator<? extends T> toRemove;
    
        /* The iterator currently returning elements. */
        private Iterator<? extends T> iterator;
    
        /*
         * We track the "meta iterators," the iterators-of-iterators, below.  Usually, topMetaIterator
         * is the only one in use, but if we encounter nested concatenations, we start a deque of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top