Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for SIMPLE (0.45 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

    <!--
      | Improvements:
      |
      | o add specification element to a field, this would be more a technical description of
      |   what is allowed in the field.
      |
      | o validators: there could be several levels of validation. Simple type validation could
      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *                 return countDifferentLines(file1Reader, file2Reader);
       *               },
       *               executor)
       *           .closing(executor);
       * }</pre>
       */
      // TODO(cpovirk): Use simple name instead of fully qualified after we stop building with JDK 8.
      @com.google.errorprone.annotations.DoNotMock(
          "Use ClosingFuture.whenAllSucceed() or .whenAllComplete() instead.")
      public static class Combiner {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    	for _, nodeName := range nodeNames {
    		result = append(result, &v1.Node{ObjectMeta: metav1.ObjectMeta{Name: nodeName}})
    	}
    	return result
    }
    
    // makeScheduler makes a simple Scheduler for testing.
    func makeScheduler(ctx context.Context, nodes []*v1.Node) *Scheduler {
    	logger := klog.FromContext(ctx)
    	cache := internalcache.New(ctx, time.Duration(0))
    	for _, n := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        } finally {
          exceptionLogger.removeHandler(listenerLoggerHandler);
        }
      }
    
      private static void doTestSuccessfulAsList_resultCancelledRacingInputDone() throws Exception {
        // Simple (combined.cancel -> input.cancel -> setOneValue):
        successfulAsList(ImmutableList.of(SettableFuture.create())).cancel(true);
    
        /*
         * Complex (combined.cancel -> input.cancel -> other.set -> setOneValue),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        } finally {
          exceptionLogger.removeHandler(listenerLoggerHandler);
        }
      }
    
      private static void doTestSuccessfulAsList_resultCancelledRacingInputDone() throws Exception {
        // Simple (combined.cancel -> input.cancel -> setOneValue):
        successfulAsList(ImmutableList.of(SettableFuture.create())).cancel(true);
    
        /*
         * Complex (combined.cancel -> input.cancel -> other.set -> setOneValue),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    //	*uint, *uint8, *uint16, *uint32, *uint64
    //	*bool
    //	*float32, *float64
    //	*interface{}
    //	*RawBytes
    //	*Rows (cursor value)
    //	any type implementing Scanner (see Scanner docs)
    //
    // In the most simple case, if the type of the value from the source
    // column is an integer, bool or string type T and dest is of type *T,
    // Scan simply assigns the value through the pointer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // there are too many exceptions, it might not be cost effective to apply the
      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
      // out of 2 concat inputs is an exception, we don't apply the hoist. If it's 1
      // out of 3, we do.
      const float exception_pct_threshold = 0.5;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    	// Make all pods in statefulset unavailable one by one
    	// and verify that RollingUpdate doesnt proceed with maxUnavailable set
    	// this could have been a simple loop, keeping it like this to be able
    	// to add more params here.
    	testCases := []struct {
    		ordinalOfPodToTerminate []int
    	}{
    
    		{[]int{}},
    		{[]int{5}},
    		{[]int{3}},
    		{[]int{4}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %res : tensor<i1>
    }
    // Unused VarIsInitializedOp is erased.
    // CHECK: tf.VarHandleOp
    // CHECK-NEXT: tf.UnknownOp
    
    
    // Simple pass through value
    // CHECK-LABEL: testWhileRegionSimplePassThrough
    func.func @testWhileRegionSimplePassThrough(%arg0 : tensor<*xf32>, %arg1 : tensor<i32>) -> tensor<*xf32> {
      // CHECK: "tf.WhileRegion"(%arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    	case objabi.R_ADDROFF, objabi.R_METHODOFF, objabi.R_ADDRCUOFF,
    		objabi.R_SIZE, objabi.R_CONST, objabi.R_GOTOFF:
    		return rr, false
    	}
    	return rr, true
    }
    
    // ExtrelocSimple creates a simple external relocation from r, with the same
    // symbol and addend.
    func ExtrelocSimple(ldr *loader.Loader, r loader.Reloc) loader.ExtReloc {
    	var rr loader.ExtReloc
    	rs := r.Sym()
    	rr.Xsym = rs
    	rr.Xadd = r.Add()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top