Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for sris (0.04 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    		// In light of that, we process all the OpStoreWBs first. This minimizes
    		// the amount of spill/restore code we need around the Zero/Move calls.
    
    		// srcs contains the value IDs of pointer values we've put in the write barrier buffer.
    		srcs := sset
    		srcs.clear()
    		// dsts contains the value IDs of locations which we've read a pointer out of
    		// and put the result in the write barrier buffer.
    		dsts := sset2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

                apply from: '$server.uri/external.gradle'
                defaultTasks 'doStuff'
    """
    
            then:
            fails(":help")
                .assertHasCause("Applying script plugins from insecure URIs, without explicit opt-in, is unsupported. The provided URI '${server.uri("/external.gradle")}' uses an insecure protocol (HTTP).")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/eager/gradients.cc

      AbstractContext* ctx_;
    };
    
    // Returns the number of elements in the gradient tensor.
    int64_t TapeVSpace::NumElements(AbstractTensorHandle* tensor) const {
      // TODO(srbs): It seems like this is used only for performance optimization
      // and not for correctness. The only downside of keeping this 1 seems to be
      // that the gradient accumulation is unbounded and we will never
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

        def "build logic can change source layout convention"() {
            def lib = new CppLib()
            settingsFile << "rootProject.name = 'hello'"
    
            given:
            lib.sources.writeToSourceDir(file("srcs"))
            lib.privateHeaders.writeToSourceDir(file("include"))
            lib.publicHeaders.writeToSourceDir(file("pub"))
            file("src/main/public/${lib.greeter.header.sourceFile.name}") << "ignore me!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            // As recommended by the HTTP RFC and implemented in Firefox, the max age of a document
            // should be defaulted to 10% of the document's age at the time it was served. Default
            // expiration dates aren't used for URIs containing a query.
            val servedMillis = servedDate?.time ?: sentRequestMillis
            val delta = servedMillis - lastModified!!.time
            return if (delta > 0L) delta / 10 else 0L
          }
    
          return 0L
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top