Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for zero (0.13 sec)

  1. src/net/http/server.go

    	// let Handlers make decisions on a per-request basis.
    	// A zero or negative value means there will be no timeout.
    	WriteTimeout time.Duration
    
    	// IdleTimeout is the maximum amount of time to wait for the
    	// next request when keep-alives are enabled. If zero, the value
    	// of ReadTimeout is used. If negative, or if zero and ReadTimeout
    	// is zero or negative, there is no timeout.
    	IdleTimeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    			}
    		})
    	}
    }
    
    // The point of this test is to show that you:
    //   - get the same priority for a zero-request pod as for a pod with the defaults requests,
    //     both when the zero-request pod is already on the node and when the zero-request pod
    //     is the one being scheduled.
    //   - don't get the same score no matter what we schedule.
    func TestZeroRequest(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			},
    			v1.PodPending,
    			"init container terminated non-zero",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					InitContainerStatuses: []v1.ContainerStatus{
    						waitingStateWithLastTermination("containerX"),
    					},
    				},
    			},
    			v1.PodPending,
    			"init container waiting, terminated zero",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, syms, addr, size, zeros[:])
    }
    
    func pdatablk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, sehp.pdata, addr, size, zeros[:])
    }
    
    func xdatablk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, sehp.xdata, addr, size, zeros[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			// Note: no res.Body.Close is needed here, since the
    			// response Content-Length is zero. Perhaps the test
    			// should be more explicit and use a HEAD, but tests
    			// elsewhere guarantee that zero byte responses generate
    			// a "Content-Length: 0" instead of chunking.
    		}
    
    		// At this point, each of the 5 Transport.readLoop goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        maximum size needs to be a constant and 2) a push op can be found with a
        known shape, and all push ops need to have the same shape.
    
        A stack creation op "tf.StackV2" will be turned in to two zero-initialized
        variables, for the buffer and current size. Each push will be turned into
        ```mlir
          %old_val = "tf.ReadVariableOp"(%buffer)
          %old_size = "tf.ReadVariableOp"(%size)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        This operation pads a `input` with zeros according to the `paddings` you
        specify. `paddings` is an integer tensor with shape `[Dn, 2]`, where n is
        the rank of `input`. For each dimension D of `input`, `paddings[D, 0]`
        indicates how many zeros to add before the contents of `input` in that
        dimension, and `paddings[D, 1]` indicates how many zeros to add after the
        contents of `input` in that dimension.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LoadLibraryEx(libname string, zero Handle, flags uintptr) (handle Handle, err error) {
    	var _p0 *uint16
    	_p0, err = syscall.UTF16PtrFromString(libname)
    	if err != nil {
    		return
    	}
    	return _LoadLibraryEx(_p0, zero, flags)
    }
    
    func _LoadLibraryEx(libname *uint16, zero Handle, flags uintptr) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val5) == int",
    			},
    			errors: map[string]string{
    				"self.val1 + 1 == 0": "integer overflow",
    				"self.val5 + 1 == 0": "integer overflow",
    				"1 / 0 == 1 / 0":     "division by zero",
    			},
    		},
    		{name: "numbers",
    			obj:    objs(math.MaxFloat64, math.MaxFloat64, math.MaxFloat32, math.MaxFloat32, math.MaxFloat64, math.MaxFloat64, int64(1)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	}()
    	return diffCh, nil
    }
    
    // QueueReplicationHeal is a wrapper for queueReplicationHeal
    func QueueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo, retryCount int) {
    	// ignore modtime zero objects
    	if oi.ModTime.IsZero() {
    		return
    	}
    	rcfg, err := getReplicationConfig(ctx, bucket)
    	if err != nil {
    		replLogOnceIf(ctx, err, bucket)
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top