Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 129 for newobject (0.52 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	// Dirty indicates VersionedObject has been modified since being converted from Attributes.Object
    	Dirty bool
    }
    
    // GetObject overrides the Attributes.GetObject()
    func (v *VersionedAttributes) GetObject() runtime.Object {
    	if v.VersionedObject != nil {
    		return v.VersionedObject
    	}
    	return v.Attributes.GetObject()
    }
    
    // ConvertToGVK converts object to the desired gvk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. test-site/app/controllers/Suggest.java

                for(String word: response.getWords()) {
                    builder.value(word);
                }
    
                String json = builder.endArray()
                    .endObject()
                    .endArray()
                    .endObject()
                    .endObject().string();
                if(callback != null && callback.length > 0) {
                    json = callback[0] + '(' + json + ')';
                }
                return ok(json);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/rpc.java

    package jcifs.dcerpc;
    
    
    import jcifs.dcerpc.ndr.NdrBuffer;
    import jcifs.dcerpc.ndr.NdrException;
    import jcifs.dcerpc.ndr.NdrObject;
    
    
    @SuppressWarnings ( "all" )
    public class rpc {
    
        public static class uuid_t extends NdrObject {
    
            public int time_low;
            public short time_mid;
            public short time_hi_and_version;
            public byte clock_seq_hi_and_reserved;
            public byte clock_seq_low;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    	}
    	t.tester.TestUpdate(
    		valid,
    		t.createObject,
    		t.getObject,
    		resttest.UpdateFunc(validUpdateFunc),
    		invalidFuncs...,
    	)
    }
    
    func (t *Tester) TestDelete(valid runtime.Object) {
    	t.tester.TestDelete(
    		valid,
    		t.createObject,
    		t.getObject,
    		errors.IsNotFound,
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/rpc.java

    package jcifs.smb1.dcerpc;
    
    import jcifs.smb1.dcerpc.ndr.*;
    import jcifs.smb1.util.*;
    
    public class rpc {
    
        public static class uuid_t extends NdrObject {
    
            public int time_low;
            public short time_mid;
            public short time_hi_and_version;
            public byte clock_seq_hi_and_reserved;
            public byte clock_seq_low;
            public byte[] node;
    
            public void encode(NdrBuffer _dst) throws NdrException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicy.java

     */
    
    package jcifs.dcerpc.msrpc;
    
    
    import jcifs.dcerpc.ndr.NdrObject;
    
    
    @SuppressWarnings ( "javadoc" )
    public class MsrpcQueryInformationPolicy extends lsarpc.LsarQueryInformationPolicy {
    
        public MsrpcQueryInformationPolicy ( LsaPolicyHandle policyHandle, short level, NdrObject info ) {
            super(policyHandle, level, info);
            this.ptype = 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/XcodeprojSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    import com.dd.plist.NSArray;
    import com.dd.plist.NSDictionary;
    import com.dd.plist.NSObject;
    import com.dd.plist.NSString;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. plugin/pkg/admission/certificates/subjectrestriction/admission.go

    	if a.GetResource().GroupResource() != csrGroupResource || a.GetSubresource() != "" {
    		return nil
    	}
    
    	csr, ok := a.GetObject().(*certificatesapi.CertificateSigningRequest)
    	if !ok {
    		return admission.NewForbidden(a, fmt.Errorf("expected type CertificateSigningRequest, got: %T", a.GetObject()))
    	}
    
    	if csr.Spec.SignerName != certificatesv1beta1.KubeAPIServerClientSignerName {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/objective-cpp/groovy/src/main/headers/greeter.h

    #define __STDC_LIMIT_MACROS
    #import <stdint.h>
    #import <Foundation/Foundation.h>
    
    @interface Greeter : NSObject
        - (void)sayHello;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 139 bytes
    - Viewed (0)
  10. plugin/pkg/admission/alwayspullimages/admission.go

    	// Ignore all calls to subresources or resources other than pods.
    	if shouldIgnore(attributes) {
    		return nil
    	}
    	pod, ok := attributes.GetObject().(*api.Pod)
    	if !ok {
    		return apierrors.NewBadRequest("Resource was marked with kind Pod but was unable to be converted")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 5.2K bytes
    - Viewed (0)
Back to top