Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for Off (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

          {},
          // Nodes
          nodes);
      return absl::OkStatus();
    }
    
    // A gradient containing only supported operators
    Status SupportedGrad(const AttrSlice& attrs, FunctionDef* g) {
      // clang-format off
      return GradForUnaryCwise(g, {
          {{"y"}, "Tanh", {"x"}},
          {{"y2"}, "Square", {"y"}, {}, {"dy"}},
          FunctionDefHelper::Const("one", 1.0f),
          {{"a"}, "Sub", {"one", "y2"}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		{1<<32 - 1, io.SeekStart, 1<<32 - 1},
    		{0, io.SeekCurrent, 1<<32 - 1},
    		{2<<32 - 1, io.SeekStart, 2<<32 - 1},
    		{0, io.SeekCurrent, 2<<32 - 1},
    	}
    	for i, tt := range tests {
    		off, err := f.Seek(tt.in, tt.whence)
    		if off != tt.out || err != nil {
    			if e, ok := err.(*PathError); ok && e.Err == syscall.EINVAL && tt.out > 1<<32 && runtime.GOOS == "linux" {
    				mounts, _ := ReadFile("/proc/mounts")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // that are reported in the blocking profile. The profiler aims to sample
    // an average of one blocking event per rate nanoseconds spent blocked.
    //
    // To include every blocking event in the profile, pass rate = 1.
    // To turn off profiling entirely, pass rate <= 0.
    func SetBlockProfileRate(rate int) {
    	var r int64
    	if rate <= 0 {
    		r = 0 // disable profiling
    	} else if rate == 1 {
    		r = 1 // profile everything
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/time/time.go

    	y := 400 * n
    	d -= daysPer400Years * n
    
    	// Cut off 100-year cycles.
    	// The last cycle has one extra leap year, so on the last day
    	// of that year, day / daysPer100Years will be 4 instead of 3.
    	// Cut it back down to 3 by subtracting n>>2.
    	n = d / daysPer100Years
    	n -= n >> 2
    	y += 100 * n
    	d -= daysPer100Years * n
    
    	// Cut off 4-year cycles.
    	// The last cycle has a missing leap year, which does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                try (PrintWriter writer = new PrintWriter(new FileWriter(target))) {
                    PrettyPrinter printer = new PrettyPrinter(syntaxFor(dsl), writer, comments);
                    if (!comments.equals(BuildInitComments.OFF)) {
                        printer.printFileHeader(headerCommentLines);
                    }
                    block.writeBodyTo(printer);
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    				"-j", string(kubeMarkMasqChain))
    		} else if proxier.localDetector.IsImplemented() {
    			// This masquerades off-cluster traffic to a service VIP.  The idea
    			// is that you can establish a static route for your Service range,
    			// routing to any node, and that node will bridge into the Service
    			// for you.  Since that might bounce off-node, we masquerade here.
    			// If/when we support "Local" policy for VIPs, we should update this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    }
    
    // manageJob is the core method responsible for managing the number of running
    // pods according to what is specified in the job.Spec.
    // Respects back-off; does not create new pods if the back-off time has not passed
    // Does NOT modify <activePods>.
    func (jm *Controller) manageJob(ctx context.Context, job *batch.Job, jobCtx *syncJobCtx) (int32, string, error) {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            when:
            run 'copyIt'
    
            then:
            file('dest').assertHasDescendants(
                'two/one.a',
                'two/two.a',
            )
        }
    
        /*
         * two.a starts off with "$one\n${one+1}\n${one+1+1}\n"
         * If these filters are chained in the correct order, you should get 6, 11, and 16
         */
    
        def "copy multiple filter test"() {
            given:
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    one or more leading elements of the module or import path. The vcslist
    is a pipe-separated list of allowed version control commands, or "all"
    to allow use of any known command, or "off" to disallow all commands.
    Note that if a module matches a pattern with vcslist "off", it may still be
    downloaded if the origin server uses the "mod" scheme, which instructs the
    go command to download the module using the GOPROXY protocol.
    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. pkg/proxy/nftables/proxier.go

    					),
    				})
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    				tx.Add(&knftables.Rule{
    					Chain: internalTrafficChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top