Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for ulong (0.14 sec)

  1. pkg/apis/batch/validation/validation_test.go

    			}
    		})
    	}
    	negative := int32(-1)
    	negative64 := int64(-1)
    	errorCases := map[string]struct {
    		opts JobValidationOptions
    		job  batch.Job
    	}{
    		`spec.managedBy: Too long: may not be longer than 63`: {
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:  validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Removes unused results from tf.WhileRegion ops";
       let description = [{
          Removes unused results from `tf.WhileRegion` ops along with the defining
          ops in the body, if it is safe to do so.
          Currently, the pass detects results with following properties:
          - the result is unused outside of the `tf.WhileRegion` op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name: "this-is-a-long-name-for-a-admission-policy-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicySpec{
    				AuditAnnotations: []admissionregistration.AuditAnnotation{{
    					Key:             "this-is-a-long-name-for-an-audit-annotation-key-xxxxxxxxxxxxxxxxxxxxxxxxxx",
    					ValueExpression: "'value'",
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	const hostnameMaxLen = 63
    	if len(hostname) <= hostnameMaxLen {
    		return hostname, nil
    	}
    	truncated := hostname[:hostnameMaxLen]
    	klog.ErrorS(nil, "Hostname for pod was too long, truncated it", "podName", podName, "hostnameMaxLen", hostnameMaxLen, "truncatedHostname", truncated)
    	// hostname should not end with '-' or '.'
    	truncated = strings.TrimRight(truncated, "-.")
    	if len(truncated) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"archive/tar"
    	"bytes"
    	"context"
    	"encoding/hex"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    //	go build [-o output] [build flags] [packages]
    //
    // Build compiles the packages named by the import paths,
    // along with their dependencies, but it does not install the results.
    //
    // If the arguments to build are a list of .go files from a single directory,
    // build treats them as a list of source files specifying a single package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private static final Set<? extends Class<?>> PRIMITIVE_TYPES = ImmutableSet.of(Byte.TYPE, Boolean.TYPE, Character.TYPE, Short.TYPE, Integer.TYPE, Long.TYPE, Float.TYPE, Double.TYPE);
            private static final String DYNAMIC_OBJECT_HELPER_FIELD = "_gr_dyn_";
            private static final String MAPPING_FIELD = "_gr_map_";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    // changed during the symtab() phase so as to insure that similar symbols
    // are bucketed together, then their types are changed back again during
    // dodata. Symbol to section assignment also plays tricks along these lines
    // in the case where a relro segment is needed.
    //
    // The value returned from setType() below reflects the effects of
    // any overrides made by symtab and/or dodata.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	{ALOCK, ynone, Px, opBytes{0xf0}},
    	{ALODSB, ynone, Pb, opBytes{0xac}},
    	{ALODSL, ynone, Px, opBytes{0xad}},
    	{ALODSQ, ynone, Pw, opBytes{0xad}},
    	{ALODSW, ynone, Pe, opBytes{0xad}},
    	{ALONG, ybyte, Px, opBytes{4}},
    	{ALOOP, yloop, Px, opBytes{0xe2}},
    	{ALOOPEQ, yloop, Px, opBytes{0xe1}},
    	{ALOOPNE, yloop, Px, opBytes{0xe0}},
    	{ALTR, ydivl, Pm, opBytes{0x00, 03}},
    	{ALZCNTL, yml_rl, Pf3, opBytes{0xbd}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests for TensorFlow ops with custom verifiers.
    
    // TODO(hinsu): Remove tests for ops without custom verifiers. These tests were
    // added along with manual op definition and are obsolete now that the op
    // definitions are auto-generated.
    
    // TODO(hinsu): Move attribute and type tests to types.mlir file.
    //===--------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top