Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for Tkey (0.04 sec)

  1. pkg/controller/disruption/disruption.go

    	dKey, quit := dc.queue.Get()
    	if quit {
    		return false
    	}
    	defer dc.queue.Done(dKey)
    
    	err := dc.sync(ctx, dKey)
    	if err == nil {
    		dc.queue.Forget(dKey)
    		return true
    	}
    
    	utilruntime.HandleError(fmt.Errorf("Error syncing PodDisruptionBudget %v, requeuing: %w", dKey, err)) //nolint:stylecheck
    	dc.queue.AddRateLimited(dKey)
    
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    	// (irregular assignment, cannot easily map to existing assignment checks)
    
    	// lhs expressions and initialization value (rhs) types
    	lhs := [2]Expr{sKey, sValue} // sKey, sValue may be nil
    	rhs := [2]Type{key, val}     // key, val may be nil
    
    	rangeOverInt := isInteger(x.typ)
    
    	if isDef {
    		// short variable declaration
    		var vars []*Var
    		for i, lhs := range lhs {
    			if lhs == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/resources/sshd-config/test-dsa.key

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 672 bytes
    - Viewed (0)
  4. internal/kms/secret-key.go

    	}
    	return NewBuiltin(keyID, key)
    }
    
    // NewBuiltin returns a single-key KMS that derives new DEKs from the
    // given key.
    func NewBuiltin(keyID string, key []byte) (*KMS, error) {
    	if len(key) != 32 {
    		return nil, errors.New("kms: invalid key length " + strconv.Itoa(len(key)))
    	}
    	return &KMS{
    		Type:       Builtin,
    		DefaultKey: keyID,
    		conn: secretKey{
    			keyID: keyID,
    			key:   key,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    	if err != nil {
    		return nil, err
    	}
    
    	mgf1XOR(db, hash, seed)
    	mgf1XOR(seed, hash, db)
    
    	if boring.Enabled {
    		var bkey *boring.PublicKeyRSA
    		bkey, err = boringPublicKey(pub)
    		if err != nil {
    			return nil, err
    		}
    		return boring.EncryptRSANoPadding(bkey, em)
    	}
    
    	return encrypt(pub, em)
    }
    
    // ErrDecryption represents a failure to decrypt a message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    			ckey := configKey{namespace: wi.Namespace, name: wi.Name}
    			if wi.Kind == model.PodKind {
    				ckey.kind = podConfigType
    			} else {
    				ckey.kind = workloadEntryConfigType
    			}
    			serviceInstancesByConfig[ckey] = instances
    		}
    	} else {
    		serviceInstances = s.convertServiceEntryToInstances(curr, services)
    		ckey := configKey{
    			kind:      serviceEntryConfigType,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData(org.gradle.api.problems.internal.GeneralDataSpec, data -> data.put("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: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java

        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
         */
        Map<String, String> getUserProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.java

        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
         */
        Map<String, String> getUserProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    		logger.Info("Error mirroring EndpointSlices for Endpoints, retrying", "key", key, "err", err)
    		c.queue.AddRateLimited(key)
    		return
    	}
    
    	logger.Info("Retry budget exceeded, dropping Endpoints out of the queue", "key", key, "err", err)
    	c.queue.Forget(key)
    	utilruntime.HandleError(err)
    }
    
    func (c *Controller) syncEndpoints(logger klog.Logger, key string) error {
    	startTime := time.Now()
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top