Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for multis (0.59 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // pass into pthread_create().
    extern "C" inline void* ThreadFuncWithCLinkage(void* thread) {
      static_cast<ThreadWithParamBase*>(thread)->Run();
      return NULL;
    }
    
    // Helper class for testing Google Test's multi-threading constructs.
    // To use it, write:
    //
    //   void ThreadFunc(int param) { /* Do things with param */ }
    //   Notification thread_can_start;
    //   ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    	})
    
    	t.Run("for virtual service with multi prefix catch all route", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    	if z.SinglePool() {
    		return z.serverPools[0].GetObjectInfo(ctx, bucket, object, opts)
    	}
    
    	if !opts.NoLock {
    		opts.NoLock = true // avoid taking locks at lower levels for multi-pool setups.
    
    		// Lock the object before reading.
    		lk := z.NewNSLock(bucket, object)
    		lkctx, err := lk.GetRLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return ObjectInfo{}, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    def TF_ConfigureAndInitializeGlobalTPUOp : TF_Op<"ConfigureAndInitializeGlobalTPU", []> {
      let summary = [{
    An op that initialize the TPU system in a multi-client set up.
      }];
    
      let description = [{
    Initializes global TPU system for mutli-client execution.
    
    This op does the work of both ConfigureDistributedTpuOp and
    InitializeHostForDistributedTpuOp, and outputs the latter's result.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    // Usually this happens automatically in TF_SessionRun. After this is called,
    // TF_SessionRun will no longer extend the session on every call.
    //
    // We expose this here to allow fine-grained synchronization in multi-threaded
    // workloads, which is required since the Python implementation depends on the
    // above mutation methods. This allows us to prevent modifications to nodes in
    // the graph after the session has been made aware of them.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    				t.Errorf("resourceVersion in list response want=%s, got=%s", tc.expectResponseRV, out.ResourceVersion)
    			}
    		})
    	}
    }
    
    // seedMultiLevelData creates a set of keys with a multi-level structure, returning a resourceVersion
    // from before any were created along with the full set of objects that were persisted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	// GatewayAPIController holds a reference to the gateway API controller.
    	GatewayAPIController GatewayController
    
    	// cache gateways addresses for each network
    	// this is mainly used for kubernetes multi-cluster scenario
    	networkMgr *NetworkManager
    
    	Networks *meshconfig.MeshNetworks
    
    	InitDone        atomic.Bool
    	initializeMutex sync.Mutex
    	ambientIndex    AmbientIndexes
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    	// claim to two volumes. The controller would recover from this (due to
    	// version errors in API server and other checks in this controller),
    	// however overall speed of multi-worker controller would be lower than if
    	// it runs single thread only.
    	claimQueue  *workqueue.Typed[string]
    	volumeQueue *workqueue.Typed[string]
    
    	// Map of scheduled/running operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    var _ T
    `
    	_, err := typecheck(src1, &conf, nil)
    	if err == nil || !strings.HasSuffix(err.Error(), " [go.dev/e/UndeclaredName]") {
    		t.Errorf("src1: unexpected error: got %v", err)
    	}
    
    	// test case for a multi-line error
    	const src2 = `
    package p
    func f() int { return 0 }
    var _ = f(1, 2)
    `
    	_, err = typecheck(src2, &conf, nil)
    	if err == nil || !strings.Contains(err.Error(), " [go.dev/e/WrongArgCount]\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    var _ T
    `
    	_, err := typecheck(src1, &conf, nil)
    	if err == nil || !strings.HasSuffix(err.Error(), " [go.dev/e/UndeclaredName]") {
    		t.Errorf("src1: unexpected error: got %v", err)
    	}
    
    	// test case for a multi-line error
    	const src2 = `
    package p
    func f() int { return 0 }
    var _ = f(1, 2)
    `
    	_, err = typecheck(src2, &conf, nil)
    	if err == nil || !strings.Contains(err.Error(), " [go.dev/e/WrongArgCount]\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top