Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 168 for _objects (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			key:         fooKey,
    			recursive:   false,
    			expectedOut: []example.Pod{*fooObj},
    		},
    		{
    			name:        "Recursive on object key (prefix) doesn't return anything",
    			key:         fooKey,
    			recursive:   true,
    			expectedOut: []example.Pod{},
    		},
    		{
    			name:        "NonRecursive on object key (no-prefix) return object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                dependencies {
                    conf('org:test:1.0') {
                        attributes {
                            attribute(LIFECYCLE_ATTRIBUTE, objects.named(Lifecycle, '$attributeValue'))
                        }
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:test:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            return project;
        }
    
        @Override
        public Object configure(Object object, Closure configureClosure) {
            return ConfigureUtil.configure(configureClosure, object);
        }
    
        @Override
        public Iterable<?> configure(Iterable<?> objects, Closure configureClosure) {
            for (Object object : objects) {
                configure(object, configureClosure);
            }
            return objects;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        @Override
        public boolean equals(Object other) {
            if (other == this) {
                return true;
            } else if (!(other instanceof MavenProject)) {
                return false;
            }
    
            MavenProject that = (MavenProject) other;
    
            return Objects.equals(getArtifactId(), that.getArtifactId())
                    && Objects.equals(getGroupId(), that.getGroupId())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    				return false
    			}
    		}
    
    		// Check that the typedef is either:
    		// 1:
    		//     	struct _jobject;
    		//     	typedef struct _jobject *jobject;
    		// 2: (in NDK16 in C++)
    		//     	class _jobject {};
    		//     	typedef _jobject* jobject;
    		// 3: (in NDK16 in C)
    		//     	typedef void* jobject;
    		if ptr, ok := w.Type.(*dwarf.PtrType); ok {
    			switch v := ptr.Type.(type) {
    			case *dwarf.VoidType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // 4. handy for constants, objects, functions, extension functions
    // 5. perfect for Gradle Tasks, Gradle Plugins and DSL Extensions
    
    
    [[kotdsl:containers]]
    == Working with container objects
    
    The Gradle build model makes heavy use of container objects (or just "containers").
    For example, both `configurations` and `tasks` are container objects that contain `Configuration` and `Task` objects respectively.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// no-scan tails of objects.
    	//
    	// This value is fixed at the start of a GC cycle. It represents the
    	// maximum scannable heap.
    	heapScan atomic.Uint64
    
    	// lastHeapScan is the number of bytes of heap that were scanned
    	// last GC cycle. It is the same as heapMarked, but only
    	// includes the "scannable" parts of objects.
    	//
    	// Updated when the world is stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                            it.className == "${AbstractTask.name}" && it.methodName == getSharedResources.name
                        }
                        objects.newInstance(NestedBean)
                    })
                    @Internal
                    final Property<String> subject = project.objects.property(String).value("World")
                }
    
                tasks.register('hello', Greeter) {
                    it.usesService(serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	//
    	// allocBits is a bitmap of objects in this span.
    	// If n >= freeindex and allocBits[n/8] & (1<<(n%8)) is 0
    	// then object n is free;
    	// otherwise, object n is allocated. Bits starting at nelem are
    	// undefined and should never be referenced.
    	//
    	// Object n starts at address n*elemsize + (start << pageShift).
    	freeindex uint16
    	// TODO: Look up nelems from sizeclass and remove this field if it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. docs/bucket/notifications/README.md

    When the _namespace_ format is used, MinIO synchronizes objects in the bucket with rows in the table. It creates rows with two columns: key and value. The key is the bucket and object name of an object that exists in MinIO. The value is JSON encoded event data about the operation that created/replaced the object in MinIO. When objects are updated or deleted, the corresponding row from this table is updated or deleted respectively.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top