Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for mstart (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Returns a 1-d i64 elements attribute populated with numbers from start to
    // end, excluding.
    static DenseIntElementsAttr GetI64ElementsAttrForSeq(int start, int end,
                                                         Builder *builder) {
      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    					break
    				}
    			}
    		}
    		writebyte(rtabi.TraceArgsEndAgg)
    		return true
    	}
    
    	start := 0
    	if strings.Contains(f.LSym.Name, "[") {
    		// Skip the dictionary argument - it is implicit and the user doesn't need to see it.
    		start = 1
    	}
    
    	for _, a := range abiInfo.InParams()[start:] {
    		if !visitType(a.FrameOffset(abiInfo), a.Type, 0) {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type (
    	EraseInfo struct {
    		Start  uint32
    		Length uint32
    	}
    	EraseInfo64 struct {
    		Start  uint64
    		Length uint64
    	}
    	MtdOobBuf struct {
    		Start  uint32
    		Length uint32
    		Ptr    *uint8
    	}
    	MtdOobBuf64 struct {
    		Start  uint64
    		Pad    uint32
    		Length uint32
    		Ptr    uint64
    	}
    	MtdWriteReq struct {
    		Start  uint64
    		Len    uint64
    		Ooblen uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

      [overwrite of manual edits to GCP Health Checks](https://github.com/kubernetes/ingress/issues/842)
      managed by the GLBC Ingress Controller. This can cause the health checks to start failing,
      requiring you to reapply the manual edits.
      * This issue does not affect clusters that start out with Kubernetes v1.6.4 or higher.
      * This issue does not affect Health Checks that were left in the configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    			sc.vlogf("http2: too many control frames in send queue, closing connection")
    			return
    		}
    
    		// Start the shutdown timer after sending a GOAWAY. When sending GOAWAY
    		// with no error code (graceful shutdown), don't start the timer until
    		// all open streams have been completed.
    		sentGoAway := sc.inGoAway && !sc.needToSendGoAway && !sc.writingFrame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      repeated ContainerResizePolicy resizePolicy = 23;
    
      // RestartPolicy defines the restart behavior of individual containers in a pod.
      // This field may only be set for init containers, and the only allowed value is "Always".
      // For non-init containers or when this field is not specified,
      // the restart behavior is defined by the Pod's restart policy and the container type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    // These are the valid resource resize restart policy values:
    const (
    	// 'NotRequired' means Kubernetes will try to resize the container
    	// without restarting it, if possible. Kubernetes may however choose to
    	// restart the container if it is unable to actuate resize without a
    	// restart. For e.g. the runtime doesn't support restart-free resizing.
    	NotRequired ResourceResizeRestartPolicy = "NotRequired"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

               MimeTypes#getMinLength(). If you set the offset value to larger
               than that size, the magic will only be compared to up to
               MimeTypes#getMinLength() bytes. It should also only start after
               the higher priority "start of file" one above
           -->
          <match value="&lt;html" type="string" offset="128:8192"/>
        </magic>
        <glob pattern="*.html"/>
        <glob pattern="*.htm"/>
      </mime-type>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Failure to start a container cannot accidentally result in the pod being considered "Succeeded" in the presence of deletion. ([#108882](https://github.com/kubernetes/kubernetes/pull/108882), [@rphillips](https://github.com/rphillips)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top