Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for Tkey (0.04 sec)

  1. pkg/controller/certificates/certificate_controller.go

    	}
    }
    
    // processNextWorkItem deals with one key off the queue.  It returns false when it's time to quit.
    func (cc *CertificateController) processNextWorkItem(ctx context.Context) bool {
    	cKey, quit := cc.queue.Get()
    	if quit {
    		return false
    	}
    	defer cc.queue.Done(cKey)
    
    	if err := cc.syncFunc(ctx, cKey); err != nil {
    		cc.queue.AddRateLimited(cKey)
    		if _, ignorable := err.(ignorableError); !ignorable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/crypto/rsa/pkcs1v15.go

    // error is returned. If the padding is valid, the resulting plaintext message
    // is copied into key. Otherwise, key is unchanged. These alternatives occur in
    // constant time. It is intended that the user of this function generate a
    // random session key beforehand and continue the protocol with the resulting
    // value.
    //
    // Note that if the session key is too small then it may be possible for an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	// 5. test deleteServiceEntryInstances
    	store.deleteServiceEntryInstances(key, cKey)
    	gotSeInstances = store.getServiceEntryInstances(key)
    	if len(gotSeInstances) != 0 {
    		t.Errorf("got unexpected instances %v", gotSeInstances)
    	}
    
    	// 6. test deleteAllServiceEntryInstances
    	store.deleteAllServiceEntryInstances(key)
    	gotSeInstances = store.getServiceEntryInstances(key)
    	if len(gotSeInstances) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/templates/service.yaml

    {{- end }}
      type: {{ $gateway.type }}
      selector:
    {{ $gateway.labels | toYaml | indent 4 }}
      ports:
    
        {{- range $key, $val := $gateway.ports }}
        -
          {{- range $pkey, $pval := $val }}
          {{ $pkey}}: {{ $pval }}
          {{- end }}
        {{- end }}
    
      {{ range $app := $gateway.ingressPorts }}
        -
          port: {{ $app.port }}
          name: {{ $app.name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/Key.java

     * For example, to create a key of type Map<String, List<Integer>>, you can just use
     * this syntax: <code>new Key&lt;Map&lt;String, List&lt;Integer&gt;&gt;&gt;(){}</code>.
     * <p>
     * If your types are not known at compile time, you can use {@link Types#parameterizedType} to make a
     * parameterized type and give it to a {@link #ofType Key.ofType} constructor.
     *
     * @param <T> binding type
     */
    public abstract class Key<T> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/registry/key.go

    	// but they can also be used anywhere a Key is required.
    	CLASSES_ROOT   = Key(syscall.HKEY_CLASSES_ROOT)
    	CURRENT_USER   = Key(syscall.HKEY_CURRENT_USER)
    	LOCAL_MACHINE  = Key(syscall.HKEY_LOCAL_MACHINE)
    	USERS          = Key(syscall.HKEY_USERS)
    	CURRENT_CONFIG = Key(syscall.HKEY_CURRENT_CONFIG)
    )
    
    // Close closes open key k.
    func (k Key) Close() error {
    	return syscall.RegCloseKey(syscall.Handle(k))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

                    it.id("id", "shortProblemMessage")
                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData("aKey", "aValue")
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
    
            when:
    
            def problems = runTask()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. internal/crypto/key.go

    }
    
    // SealedKey represents a sealed object key. It can be stored
    // at an untrusted location.
    type SealedKey struct {
    	Key       [64]byte // The encrypted and authenticated object-key.
    	IV        [32]byte // The random IV used to encrypt the object-key.
    	Algorithm string   // The sealing algorithm used to encrypt the object key.
    }
    
    // Seal encrypts the ObjectKey using the 256 bit external key and IV. The sealed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/crypto/rsa/pss.go

    	if err != nil {
    		return nil, err
    	}
    
    	if boring.Enabled {
    		bkey, err := boringPrivateKey(priv)
    		if err != nil {
    			return nil, err
    		}
    		// Note: BoringCrypto always does decrypt "withCheck".
    		// (It's not just decrypt.)
    		s, err := boring.DecryptRSANoPadding(bkey, em)
    		if err != nil {
    			return nil, err
    		}
    		return s, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repairip.go

    	}
    	defer r.svcQueue.Done(eKey)
    
    	err := r.syncService(eKey)
    	r.handleSvcErr(err, eKey)
    
    	return true
    }
    
    func (r *RepairIPAddress) handleSvcErr(err error, key string) {
    	if err == nil {
    		r.svcQueue.Forget(key)
    		return
    	}
    
    	if r.svcQueue.NumRequeues(key) < maxRetries {
    		klog.V(2).InfoS("Error syncing Service, retrying", "service", key, "err", err)
    		r.svcQueue.AddRateLimited(key)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top