Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for input1 (0.35 sec)

  1. cmd/xl-storage_test.go

    		srcPath     string
    		expectedErr error
    	}{
    		// TestXLStorage case - 1.
    		// TestXLStorage case with valid inputs, expected to pass.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "success-file",
    			expectedErr: nil,
    		},
    		// TestXLStorage case - 2.
    		// TestXLStorage case with valid inputs, expected to pass.
    		{
    			srcVol:      "success-vol",
    			srcPath:     "path/to/success-file",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/jquery-3.6.3.min.js

    e){return e[E.expando]?e:new E.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ee(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Ee(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
    
      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      // TODO(b/118970344): ctrl_trigger_a has inputs with mismatching deadness so
      // it won't be clustered.  ctrl_trigger_b is okay to cluster but we don't
      // cluster it because of b/118970344.
      EXPECT_TRUE(clusters.empty());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

       * }</pre>
       *
       * ... returns {@code "aaa"}.
       */
      public String retainFrom(CharSequence sequence) {
        return negate().removeFrom(sequence);
      }
    
      /**
       * Returns a string copy of the input character sequence, with each matching BMP character
       * replaced by a given replacement character. For example:
       *
       * <pre>{@code
       * CharMatcher.is('a').replaceFrom("radar", 'o')
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CurrentPolicies - returns comma separated policy string, from
    // an input policy after validating if there are any current
    // policies which exist on MinIO corresponding to the input.
    func (sys *IAMSys) CurrentPolicies(policyName string) string {
    	if !sys.Initialized() {
    		return ""
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %bias = arith.constant dense<1.0> : tensor<32xf32>
      %input = "tfl.dequantize"(%arg0) : (tensor<1x224x224x3x!quant.uniform<u8:f32, 1.5>>) -> tensor<1x224x224x3xf32>
      %weight = "tfl.dequantize"(%arg1) : (tensor<32x3x3x3x!quant.uniform<u8<1:255>:f32:3, {1.0,2.0,3.0}>>) -> tensor<32x3x3x3xf32>
      %conv = "tfl.conv_2d"(%input, %weight, %bias) {dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    		Aliases      host.Names
    		ExternalName string
    	}
    	tests := []struct {
    		name   string
    		input  []service
    		output []service
    	}{
    		{
    			name:   "no aliases",
    			input:  []service{{Name: "test"}},
    			output: []service{{Name: "test"}},
    		},
    		{
    			name: "simple alias",
    			input: []service{
    				{Name: "concrete"},
    				{Name: "alias", ExternalName: "concrete"},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    // gccCmd returns the gcc command line to use for compiling
    // the input.
    func (p *Package) gccCmd() []string {
    	c := append(gccBaseCmd,
    		"-w",          // no warnings
    		"-Wno-error",  // warnings are not errors
    		"-o"+gccTmp(), // write object to tmp
    		"-gdwarf-2",   // generate DWARF v2 debugging symbols
    		"-c",          // do not link
    		"-xc",         // input language is C
    	)
    	if p.GccIsClang {
    		c = append(c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    func RunOptionalTestProgressNotify(ctx context.Context, t *testing.T, store storage.Interface) {
    	input := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "name", Namespace: "test-ns"}}
    	key := computePodKey(input)
    	out := &example.Pod{}
    	if err := store.Create(ctx, key, input, out, 0); err != nil {
    		t.Fatalf("Create failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[declare_unreadable_input_output]]
    ==== Declaring input or output directories which contain unreadable content
    
    For up-to-date checks Gradle relies on tracking the state of the inputs and the outputs of a task.
    Gradle used to ignore unreadable files in the input or outputs to support certain use-cases, although it cannot track their state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top