Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for binder (0.28 sec)

  1. src/crypto/tls/handshake_server_tls13.go

    		pskBinder := hs.suite.finishedHash(binderKey, transcript)
    		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
    			c.sendAlert(alertDecryptError)
    			return errors.New("tls: invalid PSK binder")
    		}
    
    		if c.quic != nil && hs.clientHello.earlyData && i == 0 &&
    			sessionState.EarlyData && sessionState.cipherSuite == hs.suite.id &&
    			sessionState.alpnProtocol == c.clientProtocol {
    			hs.earlyData = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    	return NewFramework(ctx, r, &profile, opts...)
    }
    
    func TestInitFrameworkWithScorePlugins(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. docs/en/docs/img/sponsors/kong-banner.png

    kong-banner.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    		if err != nil {
    			return err
    		}
    		if !found {
    			// If the PV was created by an external PV provisioner or
    			// bound by external PV binder (e.g. kube-scheduler), it's
    			// possible under heavy load that the corresponding PVC is not synced to
    			// controller local cache yet. So we need to double-check PVC in
    			//   1) informer cache
    			//   2) apiserver if not found in informer cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	ReadOnly bool
    }
    
    // CinderVolumeSource represents a cinder volume resource in Openstack. A Cinder volume
    // must exist before mounting to a container. The volume must also be
    // in the same region as the kubelet. Cinder volumes support ownership
    // management and SELinux relabeling.
    type CinderVolumeSource struct {
    	// Unique id of the volume used to identify the cinder volume.
    	VolumeID string
    	// Filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	FlexVolume *FlexVolumeSource `json:"flexVolume,omitempty" protobuf:"bytes,12,opt,name=flexVolume"`
    	// cinder represents a cinder volume attached and mounted on kubelets host machine.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    	// +optional
    	Cinder *CinderVolumeSource `json:"cinder,omitempty" protobuf:"bytes,13,opt,name=cinder"`
    	// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/utils.kt

        for (finder in PsiElementFinder.EP.getPoint(project).extensionList) {
            if (finder::class.java.name == KOTLIN_JAVA_ELEMENT_FINDER_CLASS_NAME) {
                continue
            }
            action(finder)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 798 bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

      private val finder = FastFallbackExchangeFinder(routePlanner, taskRunner)
    
      @AfterEach
      fun tearDown() {
        taskFaker.close()
        routePlanner.close()
      }
    
      @Test
      fun takeConnectedConnection() {
        val plan0 = routePlanner.addPlan()
        plan0.connectState = TLS_CONNECTED
    
        taskRunner.newQueue().execute("connect") {
          val result0 = finder.find()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

        private final Collection<RuleBinder> binders;
    
        private int inputsBound;
        private final List<ModelBinding> inputBindings;
    
        public RuleBinder(BindingPredicate subjectReference, List<BindingPredicate> inputReferences, ModelAction action, Collection<RuleBinder> binders) {
            this.action = action;
            this.inputReferences = inputReferences;
            this.binders = binders;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderBase.kt

                val fqNameString = packageFqName.asString()
                buildSet {
                    forEachNonKotlinPsiElementFinder(project) { finder ->
                        val psiPackage = finder.findPackage(fqNameString) ?: return@forEachNonKotlinPsiElementFinder
                        for (subPackage in finder.getSubPackages(psiPackage, searchScope)) {
                            val name = subPackage.name?.let(Name::identifierIfValid) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top