Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,810 for leastOf (0.23 sec)

  1. src/compress/bzip2/bit_reader.go

    	byter, ok := r.(io.ByteReader)
    	if !ok {
    		byter = bufio.NewReader(r)
    	}
    	return bitReader{r: byter}
    }
    
    // ReadBits64 reads the given number of bits and returns them in the
    // least-significant part of a uint64. In the event of an error, it returns 0
    // and the error can be obtained by calling bitReader.Err().
    func (br *bitReader) ReadBits64(bits uint) (n uint64) {
    	for bits > br.bits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	//   is interpreted as "data at least as new as the provided `resourceVersion`"
    	//   and the bookmark event is send when the state is synced
    	//   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskRemovalIntegrationTest.groovy

        def "throws exception when removing a task with #description"() {
            given:
            buildFile << """
                task foo(type: Zip) {}
                ${code}
    
                // need at least one task to execute anything
                task dummy
            """
    
            when:
            fails ("dummy")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

         * @return substituted type if there was at least one substitution, [type] itself if there was no type parameter to substitute
         */
        public fun substitute(type: KaType): KaType = withValidityAssertion { substituteOrNull(type) ?: type }
    
        /**
         * substitutes type parameters in a given type corresponding to internal mapping rules.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/snapshot.go

    	nodeInfoList []*framework.NodeInfo
    	// havePodsWithAffinityNodeInfoList is the list of nodes with at least one pod declaring affinity terms.
    	havePodsWithAffinityNodeInfoList []*framework.NodeInfo
    	// havePodsWithRequiredAntiAffinityNodeInfoList is the list of nodes with at least one pod declaring
    	// required anti-affinity terms.
    	havePodsWithRequiredAntiAffinityNodeInfoList []*framework.NodeInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. src/crypto/tls/cache_test.go

    					return
    				}
    			}
    		}
    	}
    
    	// Keep certA alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    	runtime.KeepAlive(certA)
    	certA = nil
    	runtime.GC()
    
    	timeoutRefCheck(t, string(p.Bytes), 1)
    
    	// Keep certB alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top