Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,842 for _objects (0.13 sec)

  1. src/runtime/mfinal_test.go

    func TestFinalizerOnGlobal(t *testing.T) {
    	runtime.SetFinalizer(Foo1, func(p *Object1) {})
    	runtime.SetFinalizer(Foo2, func(p *Object2) {})
    	runtime.SetFinalizer(Foo1, nil)
    	runtime.SetFinalizer(Foo2, nil)
    }
    
    type Object1 struct {
    	Something []byte
    }
    
    type Object2 struct {
    	Something byte
    }
    
    var (
    	Foo2 = &Object2{}
    	Foo1 = &Object1{}
    )
    
    func TestDeferKeepAlive(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/events/v1/generated.proto

      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
      // a creation or deletion of related object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference related = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/events/v1/generated.proto

      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
      // a creation or deletion of related object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference related = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1/types.go

    	Reason string `json:"reason,omitempty" protobuf:"bytes,7,name=reason"`
    
    	// regarding contains the object this Event is about. In most cases it's an Object reporting controller
    	// implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
    	// it acts on some changes in a ReplicaSet object.
    	// +optional
    	Regarding corev1.ObjectReference `json:"regarding,omitempty" protobuf:"bytes,8,opt,name=regarding"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java

                hash = hash * 31 + Objects.hashCode(dependency.getGroupId());
                hash = hash * 31 + Objects.hashCode(dependency.getArtifactId());
                hash = hash * 31 + Objects.hashCode(dependency.getVersion());
                hash = hash * 31 + Objects.hashCode(dependency.getType());
                hash = hash * 31 + Objects.hashCode(dependency.getClassifier());
                hash = hash * 31 + Objects.hashCode(dependency.getScope());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsClientTest.groovy

                        def self = it
                        int page = 0
                        int maxPages = 2
                        setPrefix(*_) >> { args ->
                            assert args.get(0).startsWith(uri.getPath().replaceAll("^/+", ''))
                            return self
                        }
                        maxPages * execute() >> {
                            Objects objects = new Objects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/ObjectsTest.java

        assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, 2));
        assertTrue(Objects.hashCode(1, 2, null) != Objects.hashCode(1, null, 2));
        assertTrue(Objects.hashCode(1, null, 2) != Objects.hashCode(1, 2));
        assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(3, 2, 1));
        assertTrue(Objects.hashCode(1, 2, 3) != Objects.hashCode(2, 3, 1));
      }
    
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/ConfigurationExtensions.kt

    fun ConsumableConfiguration.configureAsRuntimeElements(objects: ObjectFactory) {
        attributes {
            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.LIBRARY))
            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL))
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

        /**
         * Returns a collection containing the objects in this collection of the given type.  The returned collection is
         * live, so that when matching objects are later added to this collection, they are also visible in the filtered
         * collection.
         *
         * @param type The type of objects to find.
         * @return The matching objects. Returns an empty collection if there are no such objects in this collection.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "Role",
    			Name:     KubeProxyConfigMapRoleName,
    		},
    		Subjects: []rbac.Subject{
    			{
    				Kind: rbac.GroupKind,
    				Name: constants.NodeBootstrapTokenAuthGroup,
    			},
    		},
    	}
    
    	// Create the objects if printManifest is false
    	if !printManifest {
    		if err := apiclient.CreateOrUpdateServiceAccount(client, sa); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top