Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 622 for opcode (0.48 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    	}
    }
    
    func (c *jsonFallbackEncoder) Encode(obj runtime.Object, w io.Writer) error {
    	// There is no need to handle runtime.CacheableObject, as we only
    	// fallback to other encoders here.
    	err := c.encoder.Encode(obj, w)
    	if runtime.IsNotRegisteredError(err) {
    		switch obj.(type) {
    		case *Unstructured, *UnstructuredList:
    			return UnstructuredJSONScheme.Encode(obj, w)
    		}
    	}
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// CacheEncode writes an object to a stream. The <encode> function will
    	// be used in case of cache miss. The <encode> function takes ownership
    	// of the object.
    	// If CacheableObject is a wrapper, then deep-copy of the wrapped object
    	// should be passed to <encode> function.
    	// CacheEncode assumes that for two different calls with the same <id>,
    	// <encode> function will also be the same.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. src/encoding/json/stream.go

    func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true }
    
    // Decode reads the next JSON-encoded value from its
    // input and stores it in the value pointed to by v.
    //
    // See the documentation for [Unmarshal] for details about
    // the conversion of JSON into a Go value.
    func (dec *Decoder) Decode(v any) error {
    	if dec.err != nil {
    		return dec.err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
                methodVisitor.visitMethodInsn(Opcodes.INVOKEVIRTUAL, className, "getMetaClass", RETURN_META_CLASS, false);
    
                // getProperty(this, name)
                methodVisitor.visitVarInsn(Opcodes.ALOAD, 0);
                methodVisitor.visitVarInsn(Opcodes.ALOAD, 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

    import static org.objectweb.asm.Opcodes.F_SAME;
    import static org.objectweb.asm.Opcodes.GETFIELD;
    import static org.objectweb.asm.Opcodes.GETSTATIC;
    import static org.objectweb.asm.Opcodes.GOTO;
    import static org.objectweb.asm.Opcodes.ICONST_0;
    import static org.objectweb.asm.Opcodes.ICONST_1;
    import static org.objectweb.asm.Opcodes.IFEQ;
    import static org.objectweb.asm.Opcodes.IFNONNULL;
    import static org.objectweb.asm.Opcodes.IFNULL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xcode-task-graph.png

    xcode-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/generate.go

    			Yaml:   true,
    			Pretty: true,
    			Strict: true,
    		})
    
    	whObject, _, err := deserializer.Decode([]byte(validatingWebhookYAML), nil, &admitv1.ValidatingWebhookConfiguration{})
    	if err != nil {
    		return "", fmt.Errorf("could not decode generated webhook: %w", err)
    	}
    	decodedWh := whObject.(*admitv1.ValidatingWebhookConfiguration)
    	for i := range decodedWh.Webhooks {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. cmd/erasure-decode_test.go

    		for i, disk := range disks {
    			writers[i] = newBitrotWriter(disk, "", "testbucket", "object", erasure.ShardFileSize(test.data), writeAlgorithm, erasure.ShardSize())
    		}
    		n, err := erasure.Encode(context.Background(), bytes.NewReader(data), writers, buffer, erasure.dataBlocks+1)
    		closeBitrotWriters(writers)
    		if err != nil {
    			t.Fatalf("Test %d: failed to create erasure test file: %v", i, err)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

            hasMethod(clazzA.clazz, 'foo').modifiers == Opcodes.ACC_ABSTRACT + Opcodes.ACC_PUBLIC
            hasMethod(clazzA.clazz, 'bar').modifiers == Opcodes.ACC_PUBLIC
            hasMethod(extractedA, 'foo').modifiers == Opcodes.ACC_ABSTRACT + Opcodes.ACC_PUBLIC
            hasMethod(extractedA, 'bar').modifiers == Opcodes.ACC_PUBLIC
    
            and:
            hasMethod(clazzB.clazz, 'foo').modifiers == Opcodes.ACC_PUBLIC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	// TODO eliminate this global
    	if !apiequality.Semantic.DeepEqual(original, object) {
    		t.Errorf("%v: encode altered the object, diff: %v", name, cmp.Diff(original, object))
    		return
    	}
    
    	// encode (serialize) a second time to verify that it was not varying
    	secondData, err := runtime.Encode(codec, object)
    	if err != nil {
    		if runtime.IsNotRegisteredError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top