Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for mod$ (0.14 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    };
    
    // A helper function for ConvertMaxPoolOp and ConvertAvgPoolOp. Returns true
    // if the given ReduceWindowOp is a spatial pooling without dilation. If returns
    // true, also outputs the window strides and the TF padding mode ("VALID" or
    // "SAME").
    bool IsSpatialPoolingWithoutDilation(
        mhlo::ReduceWindowOp rw, llvm::SmallVectorImpl<int64_t>* window_strides,
        std::string* padding_mode, std::string* data_format) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	}
    
    	// Can't check the signature here without a package cycle.
    }
    
    func TestImports(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	testenv.MustHaveGoRun(t)
    
    	if out, err := exec.Command(testenv.GoToolPath(t), "run", "x509_test_import.go").CombinedOutput(); err != nil {
    		t.Errorf("failed to run x509_test_import.go: %s\n%s", err, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    		set *apps.StatefulSet,
    		spc *fakeObjectManager,
    		ssc StatefulSetControlInterface,
    		pods []*v1.Pod,
    		totalPods int,
    		selector labels.Selector,
    	) []*v1.Pod {
    		// in burst mode, 2 pods got deleted, so 2 new pods will be created at the same time
    		if len(pods) != totalPods {
    			t.Fatalf("Expected create pods 4/5, got pods %v", len(pods))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		// a C-created thread and need to create a new thread.
    		startTemplateThread()
    		cgocall(_cgo_notify_runtime_init_done, nil)
    	}
    
    	// Run the initializing tasks. Depending on build mode this
    	// list can arrive a few different ways, but it will always
    	// contain the init tasks computed by the linker for all the
    	// packages in the program (excluding those added at runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        s.clear();
        llvm::interleave(specs.control_outputs, ss, ",");
        auto control_outputs =
            b.getNamedAttr("control_outputs", b.getStringAttr(ss.str()));
    
        // Under `graph_as_function` mode, `tf.entry_function` is always set as it
        // is assumed feed, fetch, and target nodes are set correctly.
        attrs.push_back(b.getNamedAttr(
            "tf.entry_function",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    			runtimeSupportsRRO: true,
    			expected:           false,
    			expectedErr:        "unknown recursive read-only mode",
    		},
    	}
    
    	for _, tc := range testCases {
    		got, err := resolveRecursiveReadOnly(tc.m, tc.runtimeSupportsRRO)
    		t.Logf("resolveRecursiveReadOnly(%+v, %v) = (%v, %v)", tc.m, tc.runtimeSupportsRRO, got, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top