Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for addLink (0.14 sec)

  1. src/database/sql/sql.go

    func withLock(lk sync.Locker, fn func()) {
    	lk.Lock()
    	defer lk.Unlock() // in case fn panics
    	fn()
    }
    
    // connRequestSet is a set of chan connRequest that's
    // optimized for:
    //
    //   - adding an element
    //   - removing an element (only by the caller who added it)
    //   - taking (get + delete) a random element
    //
    // We previously used a map for this but the take of a random element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    						return ExpectString(strings.TrimSpace(xffIPs[1]), "72.9.5.6", "ip in xff header")
    					}),
    			},
    		})
    	}
    	return cases
    }
    
    func envoyFilterCases(t TrafficContext) {
    	// Test adding envoyfilter to inbound and outbound route/cluster/listeners
    	cfg := `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: outbound
    spec:
      workloadSelector:
        labels:
    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/tensorflow/transforms/shape_inference.cc

      }
      return tensorflow::GetTypeFromTFTensorShape(output_dims, element_type);
    }
    
    // TODO(hanxiongwang): The logic in this function need move to Op Verify method
    // when dependecy issue of adding header file
    // "third_party/tensorflow/compiler/xla/xla_data.pb.h" into
    // "third_party/tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc" is
    // resolved
    LogicalResult PrecheckForXlaConvV2Op(XlaConvV2Op op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		{
    			shouldPanic: true, // overflow while aligning F2
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    				{Name: "F2", Type: t4},
    			},
    		},
    		{
    			shouldPanic: true, // overflow while adding trailing byte for zero-sized fields
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    				{Name: "F2", Type: ArrayOf(2, t1)},
    				{Name: "F3", Type: t0},
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    			//
    			// TODO(mknyszek): We make a new allocation for each register-allocated
    			// value, but previously we could always point into the heap-allocated
    			// stack frame. This is a regression that could be fixed by adding
    			// additional space to the allocated stack frame and storing the
    			// register-allocated return values into the allocated stack frame and
    			// referring there in the resulting Value.
    			s := unsafe_New(tv)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Signed divide by power of 2.
    // n / c =       n >> log(c) if n >= 0
    //       = (n+c-1) >> log(c) if n < 0
    // We conditionally add c-1 by adding n>>63>>(64-log(c)) (first shift signed, second shift unsigned).
    (Div8  <t> n (Const8  [c])) && isPowerOfTwo8(c) =>
      (Rsh8x64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    	},
    	}
    
    	for tci, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			_, fp := NewFakeProxier(v1.IPv4Protocol)
    			fp.hostname = testHostname
    
    			// First check that after adding all previous versions of endpoints,
    			// the fp.oldEndpoints is as we expect.
    			for i := range tc.previousEndpoints {
    				if tc.previousEndpoints[i] != nil {
    					fp.OnEndpointSliceAdd(tc.previousEndpoints[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier_test.go

    			ipvs := ipvstest.NewFake()
    			ipset := ipsettest.NewFake(testIPSetVersion)
    			fp := NewFakeProxier(ctx, ipt, ipvs, ipset, nil, nil, v1.IPv4Protocol)
    			fp.hostname = testHostname
    
    			// First check that after adding all previous versions of endpoints,
    			// the fp.oldEndpoints is as we expect.
    			for i := range tc.previousEndpoints {
    				if tc.previousEndpoints[i] != nil {
    					fp.OnEndpointSliceAdd(tc.previousEndpoints[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    				actual = job
    				return job, nil
    			}
    			if err := sharedInformerFactory.Batch().V1().Jobs().Informer().GetIndexer().Add(job); err != nil {
    				t.Fatalf("error %v while adding the %v job to the index", err, klog.KObj(job))
    			}
    
    			if err := manager.syncJob(ctx, testutil.GetKey(job, t)); err != nil {
    				t.Fatalf("error %v while reconciling the job %v", err, testutil.GetKey(job, t))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top