Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 622 for key0 (0.13 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			}
    		}
    		// Change annotation keys for Validating's fail open to Mutating's fail open.
    		failOpenAnnotations := map[string]string{}
    		for key, value := range t.ExpectAnnotations {
    			if strings.HasPrefix(key, "failed-open.validating.webhook.admission.k8s.io/") {
    				failOpenAnnotations[key] = value
    			}
    		}
    		for key, value := range failOpenAnnotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

            }
    
            @Override
            protected void retainValue(Class<?> key, V v) {
                getCacheScope(key).put(key, v);
            }
    
            @Nullable
            @Override
            protected V maybeGetRetainedValue(Class<?> key) {
                return getCacheScope(key).get(key);
            }
    
            private Map<Class<?>, V> getCacheScope(Class<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    * The passphrase used to protect your private key.
    
    These items must be supplied as the values of the `signing.keyId`, `signing.secretKeyRingFile`, and `signing.password` properties, respectively.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMaker.java

     * interface. It does not permit null keys or values.
     *
     * <p><b>Note:</b> by default, the returned map uses equality comparisons (the {@link Object#equals
     * equals} method) to determine equality for keys or values. However, if {@link #weakKeys} was
     * specified, the map uses identity ({@code ==}) comparisons instead for keys. Likewise, if {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/value.go

    	}
    	return nil, false
    }
    
    // Get returns the value for the key in the map, or error if not found.
    func (m *MapValue) Get(key ref.Val) ref.Val {
    	v, found := m.Find(key)
    	if found {
    		return v
    	}
    	return types.ValOrErr(key, "no such key: %v", key)
    }
    
    // Iterator produces a traits.Iterator which walks over the map keys.
    //
    // The Iterator is frequently used within comprehensions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  9. src/net/http/httputil/dump_test.go

    	{
    		GetReq: func() *http.Request {
    			return mustReadRequest("POST /v2/api/?login HTTP/1.1\r\n" +
    				"Host: passport.myhost.com\r\n" +
    				"Content-Length: 3\r\n" +
    				"\r\nkey1=name1&key2=name2")
    		},
    		WantDump: "POST /v2/api/?login HTTP/1.1\r\n" +
    			"Host: passport.myhost.com\r\n" +
    			"Content-Length: 3\r\n" +
    			"\r\nkey",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. src/encoding/json/bench_test.go

    	b.Run("4096", benchMarshalBytesError(4096))
    }
    
    func BenchmarkMarshalMap(b *testing.B) {
    	b.ReportAllocs()
    	m := map[string]int{
    		"key3": 3,
    		"key2": 2,
    		"key1": 1,
    	}
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			if _, err := Marshal(m); err != nil {
    				b.Fatal("Marshal:", err)
    			}
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top