Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for chain (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         *
         * ### Transitive expansion
         *
         * Types are always expanded to their final form. That is, if we have a chain of type alias expansions, the [KaType] only represents the
         * final expanded type, and its [abbreviatedType] the initial type alias application. For example:
         *
         * ```
         * typealias Inner = String
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/sync/mutex.go

    			// been woken or grabbed the lock, no need to wake anyone.
    			// In starvation mode ownership is directly handed off from unlocking
    			// goroutine to the next waiter. We are not part of this chain,
    			// since we did not observe mutexStarving when we unlocked the mutex above.
    			// So get off the way.
    			if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

          - name: waitgroup-by-value
          - name: atomic
          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    			// We need a pod IP - if the pod was added via the CNI plugin, that plugin told us the IPs
    			// for the pod. If this is a pod added via informer, the pod should have already gone thru
    			// the CNI plugin chain, and have a PodIP.
    			//
    			// If PodIPs exists, it is preferred, otherwise fallback to PodIP.
    			//
    			// If we get to this point and have a pod that really and truly has no IP in either of those,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	KMSv2KDF featuregate.Feature = "KMSv2KDF"
    
    	// owner: @alexzielenski, @cici37, @jiahuif
    	// kep: https://kep.k8s.io/3962
    	// alpha: v1.30
    	//
    	// Enables the MutatingAdmissionPolicy in Admission Chain
    	MutatingAdmissionPolicy featuregate.Feature = "MutatingAdmissionPolicy"
    
    	// owner: @jiahuif
    	// kep: https://kep.k8s.io/2887
    	// alpha: v1.23
    	// beta: v1.24
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/crypto/tls/tls.go

    // files. The files must contain PEM encoded data. The certificate file may
    // contain intermediate certificates following the leaf certificate to form a
    // certificate chain. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    // discarded. This behavior can be re-enabled by setting "x509keypairleaf=0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
    
            return getPackageSymbolIfPackageExists(selectedFqName)
        }
    
        /**
         * N.B. Works only for [KaClassOrObjectSymbol] parents chain.
         */
        private fun KaSession.goToNthParent(symbol: KaDeclarationSymbol, steps: Int): KaDeclarationSymbol? {
            var currentSymbol = symbol
    
            repeat(steps) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/conntest.go

    				break
    			}
    		}
    		if err := c.Close(); err != nil {
    			t.Errorf("unexpected Close error: %v", err)
    		}
    	}
    
    	wg.Add(2)
    	go pingPonger(c1)
    	go pingPonger(c2)
    
    	// Start off the chain reaction.
    	if _, err := c1.Write(make([]byte, 8)); err != nil {
    		t.Errorf("unexpected c1.Write error: %v", err)
    	}
    }
    
    // testRacyRead tests that it is safe to mutate the input Read buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/kubelet/server/server.go

    	}
    	return server
    }
    
    // InstallAuthFilter installs authentication filters with the restful Container.
    func (s *Server) InstallAuthFilter() {
    	s.restfulCont.Filter(func(req *restful.Request, resp *restful.Response, chain *restful.FilterChain) {
    		// Authenticate
    		info, ok, err := s.auth.AuthenticateRequest(req.Request)
    		if err != nil {
    			klog.ErrorS(err, "Unable to authenticate the request due to an error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top