Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for gomod (0.08 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			pubKeys: []*jose.JSONWebKey{
    				loadRSAKey(t, "testdata/rsa_1.pem", jose.RS256),
    			},
    			want: &user.DefaultInfo{
    				Name: "******@****.***",
    			},
    		},
    		{
    			name: "good token with bad client id",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    						Audiences: []string{"my-client"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

              name: session-cookie
    `, svcName, svcName)
    			// Add a negative test case. This ensures that the test is actually valid; its not a super trivial check
    			// and could be broken by having only 1 pod so its good to have this check in place
    			t.RunTraffic(TrafficTestCase{
    				name:   "no consistent",
    				config: svc,
    				call:   c.CallOrFail,
    				opts: echo.CallOptions{
    					Count:   10,
    					Address: svcName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // make the Buffer empty apart from setting the buffer_idx=0 in the
        // Tensor. This does not seem to affect runtime behavior for RNN/LSTM,
        // but would be good for reducing memory footprint.
        if (value.getDefiningOp()) {
          auto buffer_or =
              BuildBuffer(value, not_returned_by_subgraph, buffer_index);
          if (!buffer_or) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// If the copy function returns nil, no copy is required.
    	// The Copy method will do the right thing if copy returns nil
    	// for some components of an AST but not others, so a good
    	// copy function will only return non-nil for AST values that
    	// need to change.
    	// Copy itself returns either a copy or nil.
    	Copy(copy func(AST) AST, skip func(AST) bool) AST
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      elif [[ "${KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE:-grpc}" == 'http-connect' ]]; then
        # HTTP-CONNECT can work with either UDS or mTLS.
        # Linking them here to make sure we get good coverage with two test configurations.
        params+=("--server-ca-cert=${KONNECTIVITY_SERVER_CA_CERT_PATH}")
        params+=("--server-cert=${KONNECTIVITY_SERVER_CERT_PATH}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/reflect/value.go

    		// as a default value doesn't makes sense here.
    		panic(&ValueError{"reflect.Value.IsZero", v.Kind()})
    	}
    }
    
    // isZero For all zeros, performance is not as good as
    // return bytealg.Count(b, byte(0)) == len(b)
    func isZero(b []byte) bool {
    	if len(b) == 0 {
    		return true
    	}
    	const n = 32
    	// Align memory addresses to 8 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      else
        project_hash=$(echo -n "$PROJECT" | md5sum)
        project_hash=${project_hash%%[[:blank:]]*}
      fi
    
      # This requires 1 million projects before the probability of collision is 50%
      # that's probably good enough for now :P
      project_hash=${project_hash:0:10}
    
      set-preferred-region
    
      if [[ "${ENABLE_DOCKER_REGISTRY_CACHE:-}" == "true" ]]; then
        DOCKER_REGISTRY_MIRROR_URL="https://mirror.gcr.io"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                name='sample/conv2d',
            )
            if has_bias:
              out = nn_ops.bias_add(out, bias, data_format='NHWC')
            if activation_fn is not None:
              # The accuracy is not good when having FusedBatchNorm without
              # activation in this test.
              if has_batch_norm:
                # Fusing is supported for non-training case.
                out, _, _, _, _, _ = nn_ops.fused_batch_norm_v3(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

            return this.bimap.equals(that.bimap);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return bimap.hashCode();
        }
    
        // There's really no good way to implement toString() without printing the entire BiMap, right?
        @Override
        public String toString() {
          return "Maps.asConverter(" + bimap + ")";
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Maps.java

            return this.bimap.equals(that.bimap);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return bimap.hashCode();
        }
    
        // There's really no good way to implement toString() without printing the entire BiMap, right?
        @Override
        public String toString() {
          return "Maps.asConverter(" + bimap + ")";
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top