Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 125 of 125 for src2 (0.05 sec)

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

    		return fmt.Errorf("oidc: could not parse claim sources: %v", err)
    	}
    
    	src, ok := claimToSource[r.claim]
    	if !ok {
    		// No distributed claim present.
    		return nil
    	}
    	ep, ok := sources[src]
    	if !ok {
    		return fmt.Errorf("id token _claim_names contained a source %s missing in _claims_sources", src)
    	}
    	if ep.URL == "" {
    		// This is maybe an aggregated claim (ep.JWT != "").
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v.AddArg3(dst, src, midmem)
    		return true
    	}
    	// match: (Move {t1} [s] dst tmp1 midmem:(VarDef (Move {t2} [s] tmp2 src _)))
    	// cond: t1.Compare(t2) == types.CMPeq && isSamePtr(tmp1, tmp2) && isStackPtr(src) && !isVolatile(src) && disjoint(src, s, tmp2, s) && (disjoint(src, s, dst, s) || isInlinableMemmove(dst, src, s, config))
    	// result: (Move {t1} [s] dst src midmem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[red1:.*]] = mhlo.reduce(%[[cmul]] init: %[[init]]) applies mhlo.add across dimensions = [0, 1, 2] : (tensor<8x8x8x8xf32>, tensor<f32>) -> tensor<8xf32>
      // CHECK-NEXT: %[[scr2:.*]] = mhlo.convert %[[red1]] : tensor<8xf32>
    
      // CHECK-NEXT: %[[mul2:.*]] = mhlo.multiply %arg2, %[[scr1]] : tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    			// Force the same IPs and ports
    			svc2 := tc.svc.DeepCopy()
    			svc2.Name += "2"
    			svc2.Spec.ClusterIP = createdSvc.Spec.ClusterIP
    			svc2.Spec.ClusterIPs = createdSvc.Spec.ClusterIPs
    			svc2.Spec.Ports = createdSvc.Spec.Ports
    
    			// Create again
    			_, err = storage.Create(ctx, svc2, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			sc: storage.StorageClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sc2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Provisioner: "kubernetes.io/nfs",
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc2", "kubernetes.io/nfs", "Delete",
    				"Immediate", false, "5m"}}},
    		},
    		{
    			sc: storage.StorageClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top