Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 196 for light (0.05 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    	if err != nil {
    		t.Errorf("Did not expect an error because the pod is in a different namespace than the quota: %v", err)
    	}
    }
    
    // TestAdmitBelowTerminatingQuotaLimit ensures that terminating pods are charged to the right quota.
    // It creates a terminating and non-terminating quota, and creates a terminating pod.
    // It ensures that the terminating quota is incremented, and the non-terminating quota is not.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    // to verify which journal type first before accessing rest of the fields.
    type xlMetaV2Version struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    //
    // In the function above, the incoming parameter "used" is fully live,
    // "notused" is not live, and "s" is partially live (only the length
    // field of the string is used). At the point where debug value
    // analysis runs, we might expect to see an entry block with:
    //
    //	b1:
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    			// TODO: this is an eager loop, we might want to lazily read from in only once
    			// ch is empty
    			for range in {
    				w.waitForPod(uid)
    				w.tick()
    				ch <- struct{}{}
    			}
    		}()
    		return ch
    	}
    	return w, processed
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
      // An alternative might be to memset() owner_ to all zeros, but there's no
      // guarantee that a zero'd pthread_t is necessarily invalid or even different
      // from pthread_self().
      bool has_owner_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
      // An alternative might be to memset() owner_ to all zeros, but there's no
      // guarantee that a zero'd pthread_t is necessarily invalid or even different
      // from pthread_self().
      bool has_owner_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    //
    // It returns a *[rsa.PublicKey], *[dsa.PublicKey], *[ecdsa.PublicKey],
    // [ed25519.PublicKey] (not a pointer), or *[ecdh.PublicKey] (for X25519).
    // More types might be supported in the future.
    //
    // This kind of key is commonly encoded in PEM blocks of type "PUBLIC KEY".
    func ParsePKIXPublicKey(derBytes []byte) (pub any, err error) {
    	var pki publicKeyInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        @Nullable
        String getDescription();
    
        /**
         * Sets a description for this project.
         *
         * @param description The description of the project. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
         * <p>Returns the group of this project. Gradle always uses the {@code toString()} value of the group. The group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				args:      *tt.args,
    			}
    
    			// Using 4 as a seed source to test getOffsetAndNumCandidates() deterministically.
    			// However, we need to do it after informerFactory.WaitforCacheSync() which might
    			// set a seed.
    			rand.Seed(4)
    			var prevNumFilterCalled int32
    			for cycle, pod := range tt.testPods {
    				state := framework.NewCycleState()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    //   materialized in the address space of the calling process.
    // * int is used as an index into arrays.
    // * Deletion functions are safe to call on nullptr.
    //
    // Questions left to address:
    // * Might at some point need a way for callers to provide their own Env.
    // * Maybe add TF_TensorShape that encapsulates dimension info.
    //
    // Design decisions made:
    // * Backing store for tensor memory has an associated deallocation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top