Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 427 for Primitive (0.15 sec)

  1. pkg/apis/core/v1/defaults_test.go

    				toVisit = append(toVisit, testPath{path: visit.path + "[0]", value: visit.value.Index(0)})
    			} else if !isPrimitive(visit.value.Type().Elem().Kind()) {
    				t.Logf("unhandled non-primitive slice type %s: %s", visit.path, visit.value.Type().Elem())
    			}
    
    		case visit.value.Kind() == reflect.Map:
    			if !visit.value.IsNil() {
    				// if we already have a value, we got defaulted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return new GoodEquals(a, b);
        }
    
        // instance method ignored
        public Object badIgnored() {
          return new BadEquals();
        }
    
        // primitive ignored
        public int returnsInt() {
          throw new UnsupportedOperationException();
        }
    
        // void ignored
        public void voidMethod() {
          throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                ClassNode t = ClassHelper.make(name);
                // asking isResolved here allows to check if a primitive
                // type name like "int" was used to make t. In such a case
                // we have nothing left to do.
                boolean isClass = t.isResolved();
                if (!isClass) {
                    // It was no primitive type, so next we see if the name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    mergingIntList:
    `),
    		},
    	},
    	{
    		Description: "$deleteFromPrimitiveList on nonexistent primitive list should not add the primitive list",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    foo:
      - bar
    `),
    			TwoWay: []byte(`
    $deleteFromPrimitiveList/mergingIntList:
      - 3
    `),
    			Modified: []byte(`
    foo:
      - bar
    `),
    		},
    	},
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. pkg/api/v1/pod/util_test.go

    	case reflect.Slice:
    		resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path.Key("*"), "", tp.Elem()))...)
    	default:
    		// all primitive types
    	}
    
    	return resourcePaths
    }
    
    func TestPodConfigmaps(t *testing.T) {
    	// Stub containing all possible ConfigMap references in a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // and if x is an integer, it evaluates to 0 exactly, which is significant
        // because we then take the log of this value, and log(0) is inf.
        //
        // We don't have a frac(x) primitive in XLA and computing it is tricky, but
        // because abs(sin(pi * x)) = abs(sin(pi * abs(x))), it's good enough for
        // our purposes to use abs(frac(x)) = abs(x) - floor(abs(x)).
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa.go

    // interface isn't necessary, there are functions for encrypting/decrypting
    // with v1.5/OAEP and signing/verifying with v1.5/PSS. If one needs to abstract
    // over the public key primitive, the PrivateKey type implements the
    // Decrypter and Signer interfaces from the crypto package.
    //
    // Operations involving private keys are implemented using constant-time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    type componentsIncludeBlankFields bool
    
    const (
    	IgnoreBlankFields componentsIncludeBlankFields = false
    	CountBlankFields  componentsIncludeBlankFields = true
    )
    
    // NumComponents returns the number of primitive elements that compose t.
    // Struct and array types are flattened for the purpose of counting.
    // All other types (including string, slice, and interface types) count as one element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/bufio/bufio.go

    	}
    
    	// Handle last byte, if any.
    	if i := len(line) - 1; i >= 0 {
    		b.lastByte = int(line[i])
    		b.lastRuneSize = -1
    	}
    
    	return
    }
    
    // ReadLine is a low-level line-reading primitive. Most callers should use
    // [Reader.ReadBytes]('\n') or [Reader.ReadString]('\n') instead or use a [Scanner].
    //
    // ReadLine tries to return a single line, not including the end-of-line bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. src/encoding/asn1/asn1.go

    // A SyntaxError suggests that the ASN.1 data is invalid.
    type SyntaxError struct {
    	Msg string
    }
    
    func (e SyntaxError) Error() string { return "asn1: syntax error: " + e.Msg }
    
    // We start by dealing with each of the primitive types in turn.
    
    // BOOLEAN
    
    func parseBool(bytes []byte) (ret bool, err error) {
    	if len(bytes) != 1 {
    		err = SyntaxError{"invalid boolean"}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top