Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for checkSeq (0.3 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            Value scale, zero_point;
            if (failed(CreateQuantizationParams(qtype, arg.getLoc(), rewriter,
                                                scale, zero_point))) {
              // As the quantized types are already checked, this is unexpected.
              call_op->emitError(
                  "Failed to create quantization parameter for an argument.");
              return failure();
            }
            qparam_args.push_back(scale);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	if matches == 0 {
    		if len(vs.Spec.Http) > 0 {
    			fmt.Fprintf(writer, "%sWARNING: No destinations match pod subsets (checked %d HTTP routes)\n",
    				printSpaces(initPrintNum+printLevel1), len(vs.Spec.Http))
    		}
    		if len(vs.Spec.Tcp) > 0 {
    			fmt.Fprintf(writer, "%sWARNING: No destinations match pod subsets (checked %d TCP routes)\n",
    				printSpaces(initPrintNum+printLevel1), len(vs.Spec.Tcp))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

            $custom_plugin_monitors = @()
    
            # Custom Plugin Monitors
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubelet.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubeproxy.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-defender-monitor.json")
    
            # System Stats Monitors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// unset fields that are not relevant to the test
    			for i := range got {
    				checker := got[i]
    				switch p := checker.(type) {
    				case *kmsPluginProbe:
    					p.service = nil
    					p.l = nil
    					p.lastResponse = nil
    				case *kmsv2PluginProbe:
    					p.service = nil
    					p.l = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    	fileB := mustParse(`package main; var b = 2`)
    
    	// The initialization order must not depend on the parse
    	// order of the files, only on the presentation order to
    	// the type-checker.
    	for _, test := range []struct {
    		files []*syntax.File
    		want  string
    	}{
    		{[]*syntax.File{fileA, fileB}, "[a = 1 b = 2]"},
    		{[]*syntax.File{fileB, fileA}, "[b = 2 a = 1]"},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	// check the full graph to see if the directory is a non-root dependency.
    	//
    	// If the roots are not consistent with the full module graph, the selected
    	// versions of root modules may differ from what we already checked above.
    	// Re-check those paths too.
    
    	mg, _ := rs.Graph(ctx)
    	var importPath string
    	for _, m := range mg.BuildList() {
    		var found bool
    		importPath, found = tryMod(m)
    		if found {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    	fileB := mustParse(fset, `package main; var b = 2`)
    
    	// The initialization order must not depend on the parse
    	// order of the files, only on the presentation order to
    	// the type-checker.
    	for _, test := range []struct {
    		files []*ast.File
    		want  string
    	}{
    		{[]*ast.File{fileA, fileB}, "[a = 1 b = 2]"},
    		{[]*ast.File{fileB, fileA}, "[b = 2 a = 1]"},
    	} {
    		var info Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	q := par.NewQueue(runtime.GOMAXPROCS(0))
    	for {
    		var disambiguateRoot sync.Map
    		for _, pkg := range pkgs {
    			if pkg.mod.Path == "" || pathIsRoot[pkg.mod.Path] {
    				// Lazy module loading will cause pkg.mod to be checked before any other modules
    				// that are only indirectly required. It is as unambiguous as possible.
    				continue
    			}
    			pkg := pkg
    			q.Add(func() {
    				skipModFile := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		base.Fatalf("go: -insecure flag is no longer supported; use GOINSECURE instead")
    	}
    
    	modload.ForceUseModules = true
    
    	// Do not allow any updating of go.mod until we've applied
    	// all the requested changes and checked that the result matches
    	// what was requested.
    	modload.ExplicitWriteGoMod = true
    
    	// Allow looking up modules for import paths when outside of a module.
    	// 'go get' is expected to do this, unlike other commands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/SetsTest.java

    import java.util.stream.Collector;
    import java.util.stream.Stream;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Unit test for {@code Sets}.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
Back to top