Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 774 for keyA (0.31 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      }
    
      /**
       * Returns a hash table for the specified keys and values, and ensures that neither keys nor
       * values are null. This method may update {@code alternatingKeysAndValues} if there are duplicate
       * keys. If so, the return value will indicate how many entries are still valid, and will also
       * include a {@link Builder.DuplicateKey} in case duplicate keys are not allowed now or will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            buildFile << """
                myTask.nested = [(providers.gradleProperty('key').get()): new NestedBean('value1'), key2: new NestedBean('value2')]
            """
            def taskPath = ':myTask'
    
            when:
            run taskPath, '-Pkey=key1'
            then:
            executedAndNotSkipped taskPath
    
            when:
            run taskPath, '-Pkey=key1'
            then:
            skipped taskPath
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. cmd/sftp-server.go

    		if len(attribValue) != 1 {
    			continue
    		}
    
    		if attribKey == "sshPublicKey" && key != nil {
    			key2, _, _, _, err := ssh.ParseAuthorizedKey([]byte(attribValue[0]))
    			if err != nil {
    				return nil, errSFTPPublicKeyBadFormat
    			}
    
    			if subtle.ConstantTimeCompare(key2.Marshal(), key.Marshal()) != 1 {
    				return nil, errAuthentication
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    							path:   "/nested-key1",
    							allow:  true,
    						},
    						{
    							prefix: "[NestedToken2]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims2,
    							path:   "/nested-key1",
    							allow:  false,
    						},
    						{
    							prefix: "[NestedToken1]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims1,
    							path:   "/nested-key2",
    							allow:  false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    					}
    					keys = append(keys, scan.b[keyStart:end])
    				}
    				sort.Stable(bytesSort{keys, 2})
    				if n := len(keys); n > 0 {
    					k := 0
    					for i := 1; i < n; i++ {
    						if !bytes.Equal(keys[k][:2], keys[i][:2]) {
    							k++
    							keys[k] = keys[i]
    						} else if !bytes.Equal(keys[k], keys[i]) {
    							scan.setError(ErrDuplicateKey)
    						}
    					}
    					keys = keys[:k+1]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/internal/fmtsort/sort.go

    //
    // Each KeyValue pair contains a map key and its corresponding value.
    type SortedMap []KeyValue
    
    // KeyValue holds a single key and value pair found in a map.
    type KeyValue struct {
    	Key, Value reflect.Value
    }
    
    // Sort accepts a map and returns a SortedMap that has the same keys and
    // values but in a stable sorted order according to the keys, modulo issues
    // raised by unorderable key values such as NaNs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/maps/maps.go

    // Clone returns a copy of m.  This is a shallow clone:
    // the new keys and values are set using ordinary assignment.
    func Clone[M ~map[K]V, K comparable, V any](m M) M {
    	// Preserve nil in case it matters.
    	if m == nil {
    		return nil
    	}
    	return clone(m).(M)
    }
    
    // Copy copies all key/value pairs in src adding them to dst.
    // When a key in src is already present in dst,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:35:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    					}
    				}
    			}
    		}
    	}
    	// Infer units for keys without any units associated with
    	// numeric tag values.
    	for key := range encounteredKeys {
    		unit := numLabelUnits[key]
    		if unit == "" {
    			switch key {
    			case "alignment", "request":
    				numLabelUnits[key] = "bytes"
    			default:
    				numLabelUnits[key] = key
    			}
    		}
    	}
    
    	// Copy ignored units into more readable format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. cmd/bucket-policy.go

    		}
    		cloneHeader.Del(objLock)
    	}
    
    	for key, values := range cloneHeader {
    		if strings.EqualFold(key, xhttp.AmzObjectTagging) {
    			continue
    		}
    		if existingValues, found := args[key]; found {
    			args[key] = append(existingValues, values...)
    		} else {
    			args[key] = values
    		}
    	}
    
    	cloneURLValues := make(url.Values, len(r.Form))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top