Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for sris (0.13 sec)

  1. tensorflow/compiler/aot/tests/BUILD

        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
        testonly = True,
        srcs = [
            "test_error_message.lit.pbtxt.config.pbtxt",
            "test_error_message.lit.pbtxt.debug.pbtxt",
            "test_error_message.lit.pbtxt.fake_py.debug",
        ],
        data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				excluded.Delete(check.Name())
    				fmt.Fprintf(&individualCheckOutput, "[+]%s excluded: ok\n", check.Name())
    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
                for (V v : src) {
                    if (failOnNull && v == null) {
                        throw new IllegalArgumentException("Illegal null value provided in this collection: " + src);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            def app = new CppApp()
    
            given:
            app.headers.writeToProject(testDirectory)
            app.main.writeToSourceDir(file("srcs/main.cpp"))
            app.greeter.writeToSourceDir(file("srcs/one.cpp"))
            app.sum.writeToSourceDir(file("srcs/two.cpp"))
            file("src/main/cpp/broken.cpp") << "ignore me!"
    
            and:
            buildFile << """
                apply plugin: 'cpp-application'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
                for (V v : src) {
                    if (failOnNull && v == null) {
                        throw new IllegalArgumentException("Illegal null value provided in this collection: " + src);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/net/conf.go

    	hostname = stringslite.TrimSuffix(hostname, ".")
    
    	nss := getSystemNSS()
    	srcs := nss.sources["hosts"]
    	// If /etc/nsswitch.conf doesn't exist or doesn't specify any
    	// sources for "hosts", assume Go's DNS will work fine.
    	if errors.Is(nss.err, fs.ErrNotExist) || (nss.err == nil && len(srcs) == 0) {
    		if canUseCgo && c.goos == "solaris" {
    			// illumos defaults to
    			// "nis [NOTFOUND=return] files",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    				}
    			}
    		}
    		x[:cap(x)][len(x)] = 0 // for sais.New
    		testSA(t, x, build)
    	})
    
    	t.Run("exhaustive2", func(t *testing.T) {
    		// All inputs over {0,1} up to length 21.
    		// Runs in about 10 seconds on my laptop.
    		x := make([]byte, 30)
    		numFail := 0
    		for n := 0; n <= 21; n++ {
    			if n > 12 && testing.Short() {
    				break
    			}
    			x[n] = 0 // for sais.New
    			testRec(t, x[:n], 0, 2, &numFail, build)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental_graph.cc

      }
      const string& Name() const override { return op_type_; }
      const string& DeviceName() const override { return device_name_; }
    
      Status SetDeviceName(const char* name) override {
        // TODO(srbs): Implement this.
        device_name_ = name;
        return absl::OkStatus();
      }
    
      Status AddInput(AbstractTensorHandle* input) override {
        GraphTensor* t = dyn_cast<GraphTensor>(input);
        if (!t) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. src/net/lookup.go

    			return "", nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		srvs = append(srvs, &SRV{Target: srv.Target.String(), Port: srv.Port, Priority: srv.Priority, Weight: srv.Weight})
    	}
    	byPriorityWeight(srvs).sort()
    	return cname.String(), srvs, nil
    }
    
    // goLookupMX returns the MX records for name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    	"k8s.io/component-base/logs"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	"k8s.io/component-base/metrics/features"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/prometheus/slis"
    	"k8s.io/component-base/term"
    	"k8s.io/component-base/version"
    	"k8s.io/component-base/version/verflag"
    	"k8s.io/klog/v2"
    	schedulerserverconfig "k8s.io/kubernetes/cmd/kube-scheduler/app/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top