Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for Region (0.11 sec)

  1. tensorflow/cc/gradients/math_grad.cc

    bool IsFloatingPointDtype(DataType dtype) {
      static constexpr DataType valid_dtypes[] = {
          DT_FLOAT, DT_HALF, DT_DOUBLE, DT_BFLOAT16, DT_COMPLEX64, DT_COMPLEX128};
      return std::find(std::begin(valid_dtypes), std::end(valid_dtypes), dtype) !=
             std::end(valid_dtypes);
    }
    
    Status CastGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         */
        private DefaultConfiguration createCopy(Set<Dependency> dependencies, Set<DependencyConstraint> dependencyConstraints) {
            // Begin by allowing everything, and setting deprecations for disallowed roles in a new role implementation
            boolean deprecateConsumption = !canBeConsumed || consumptionDeprecated;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	r.SetSym(extsym.Sym())
    	r.SetSiz(uint8(ctxt.Arch.PtrSize))
    	// TODO: maybe this could be
    	// sb.SetSize(0)
    	// sb.SetData(nil)
    	// sb.AddAddr(ctxt.Arch, extsym.Sym())
    	// If the size is not 0 to begin with, I don't think the added 8 bytes
    	// of zeros are necessary.
    }
    
    // Xcoffadddynrel adds a dynamic relocation in a XCOFF file.
    // This relocation will be made by the loader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	// which run an apiserver which might need to make calls to this
    	// webhook. Such installs are likely to be non-portable, i.e., not easy
    	// to turn up in a new cluster.
    	//
    	// The scheme must be "https"; the URL must begin with "https://".
    	//
    	// A path is optional, and if present may be any string permissible in
    	// a URL. You may use the path to pass an arbitrary string to the
    	// webhook, for example, a cluster identifier.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	close(containerResults)
    
    	for containerResult := range containerResults {
    		syncResults = append(syncResults, containerResult)
    	}
    	return
    }
    
    // pruneInitContainersBeforeStart ensures that before we begin creating init
    // containers, we have reduced the number of outstanding init containers still
    // present. This reduces load on the container garbage collector by only
    // preserving the most recent terminated init container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		n, _ := f.Read(buf)
    		s := string(buf[:n])
    		if i := strings.Index(s, "\n"); i >= 0 {
    			s = s[:i]
    		}
    		i := strings.Index(s, " start")
    		if i < 0 {
    			log.Fatalf("time log %s does not begin with start line", os.Getenv("GOBUILDTIMELOGFILE"))
    		}
    		t, err := time.Parse(time.UnixDate, s[:i])
    		if err != nil {
    			log.Fatalf("cannot parse time log line %q: %v", s, err)
    		}
    		timeLogStart = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	flowcontrolrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/client-go/tools/cache"
    
    	"k8s.io/klog/v2"
    )
    
    // FinishFunc is a function returned by Begin hooks to complete an operation.
    type FinishFunc func(ctx context.Context, success bool)
    
    // AfterDeleteFunc is the type used for the Store.AfterDelete hook.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    	if err == nil {
    		b, err = pedanticReadAll(r.Body)
    		r.Body.Close()
    	}
    	if err != nil {
    		t.Error(err)
    	} else if s := string(b); !strings.HasPrefix(s, "User-agent:") {
    		t.Errorf("Incorrect page body (did not begin with User-agent): %q", s)
    	}
    }
    
    func TestClientHead(t *testing.T) { run(t, testClientHead) }
    func testClientHead(t *testing.T, mode testMode) {
    	cst := newClientServerTest(t, mode, robotsTxtHandler)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top