Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for berate (0.19 sec)

  1. tensorflow/c/eager/c_api_test.cc

    //    only worker 1.
    // 2. Create a context B using A.
    // 3. Create the variable in B.
    // 4. Create another single host server def C with only worker 0.
    // 5. Start the GRPC server for worker 0 using C.
    // 6. Create a context D using the full cluster server def E.
    // 7. Read the variable in D.
    TEST(CAPI, SingleHostServerDefV1Works) {
      // Create a server def that represents a 2-process cluster and a client.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/base/CharMatcher.java

        return new Is(match);
      }
    
      /**
       * Returns a {@code char} matcher that matches any character except the BMP character specified.
       *
       * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
       */
      public static CharMatcher isNot(final char match) {
        return new IsNot(match);
      }
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

        return new Is(match);
      }
    
      /**
       * Returns a {@code char} matcher that matches any character except the BMP character specified.
       *
       * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
       */
      public static CharMatcher isNot(final char match) {
        return new IsNot(match);
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    func TestMigrateIndexesWithDynamicTableName(t *testing.T) {
    	// Create primary table
    	if err := DB.AutoMigrate(&DynamicUser{}); err != nil {
    		t.Fatalf("AutoMigrate create table error: %#v", err)
    	}
    
    	// Create sub tables
    	for _, v := range []string{"01", "02", "03"} {
    		tableName := "dynamic_users_" + v
    		m := DB.Scopes(func(db *gorm.DB) *gorm.DB {
    			return db.Table(tableName)
    		}).Migrator()
    
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	globalIAMSys.Init(ctx, obj, globalEtcdClient, 2*time.Second)
    
    	// get random bucket name.
    	bucketName := getRandomBucketName()
    
    	// Create bucket.
    	err := obj.MakeBucket(context.Background(), bucketName, MakeBucketOptions{})
    	if err != nil {
    		// failed to create newbucket, return err.
    		return "", nil, err
    	}
    	// Register the API end points with Erasure object layer.
    	// Registering only the GetObject handler.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

    kind: Role
    metadata:
      labels:
        app: metallb
      name: controller
      namespace: metallb-system
    rules:
    - apiGroups:
      - ""
      resources:
      - secrets
      verbs:
      - create
      - delete
      - get
      - list
      - patch
      - update
      - watch
    - apiGroups:
      - ""
      resourceNames:
      - memberlist
      resources:
      - secrets
      verbs:
      - list
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon());
        assertEquals(
            ImmutableMap.of(
                3, ValueDifferenceImpl.create("c", "f"), 5, ValueDifferenceImpl.create("e", "g")),
            diff1.entriesDiffering());
        assertEquals(
            "not equal: only on left={2=b, 4=d}: only on right={6=z}: "
                + "value differences={3=(c, f), 5=(e, g)}",
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 67.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon());
        assertEquals(
            ImmutableMap.of(
                3, ValueDifferenceImpl.create("c", "f"), 5, ValueDifferenceImpl.create("e", "g")),
            diff1.entriesDiffering());
        assertEquals(
            "not equal: only on left={2=b, 4=d}: only on right={6=z}: "
                + "value differences={3=(c, f), 5=(e, g)}",
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 64.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

       * @since 28.2
       */
      public static <O extends @Nullable Object> ListenableFuture<O> submit(
          Callable<O> callable, Executor executor) {
        TrustedListenableFutureTask<O> task = TrustedListenableFutureTask.create(callable);
        executor.execute(task);
        return task;
      }
    
      /**
       * Executes {@code runnable} on the specified {@code executor}, returning a {@code Future} that
       * will complete after execution.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/SetsTest.java

        suite.addTestSuite(SetsTest.class);
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
                        return Sets.newConcurrentHashSet(Arrays.asList(elements));
                      }
                    })
                .named("Sets.newConcurrentHashSet")
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
Back to top