Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 91 for _objects (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// operation if no indexer found.
    	Indexers *cache.Indexers
    
    	// NewFunc is a function that creates new empty object storing a object of type Type.
    	NewFunc func() runtime.Object
    
    	// NewList is a function that creates new empty object storing a list of
    	// objects of type Type.
    	NewListFunc func() runtime.Object
    
    	Codec runtime.Codec
    
    	Clock clock.WithTicker
    }
    
    type watchersMap map[int]*cacheWatcher
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        msg = "duplicate declaration of version " + Objects.toString(dependency.getVersion(), "(?)");
                    } else {
                        msg = "version " + Objects.toString(existing.getVersion(), "(?)") + " vs "
                                + Objects.toString(dependency.getVersion(), "(?)");
                    }
    
                    addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                            .map(Object::toString)
                            .toList();
                    request.getModelRepositoryHolder().merge(model.getRepositories(), false);
                    List<String> newRepos = request.getModelRepositoryHolder().getRepositories().stream()
                            .map(Object::toString)
                            .toList();
                    if (!Objects.equals(oldRepos, newRepos)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    	}
    	return cmc
    }
    
    // Add appends a runtime.Object and a deep copy of that object into the
    // cacheMutationCheck.
    func (cmc *cacheMutationCheck) Add(o runtime.Object) {
    	cmc.objects = append(cmc.objects, cacheObject{
    		original: o,
    		deepCopy: o.DeepCopyObject(),
    	})
    }
    
    // Check verifies that no objects in the cacheMutationCheck have been mutated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. cmd/sts-handlers_test.go

    	}
    
    	// Validate sts creds can access the object
    	c.mustPutObjectWithTags(ctx, minioClient, bucket, object)
    	c.mustGetObject(ctx, minioClient, bucket, object)
    	c.mustHeadObject(ctx, minioClient, bucket, object, 2)
    
    	// Validate that the client can remove objects
    	if err = minioClient.RemoveObjectTagging(ctx, bucket, object, minio.RemoveObjectTaggingOptions{}); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    	dsKey, err := controller.KeyFunc(ds)
    	if err != nil {
    		return fmt.Errorf("couldn't get key for object %#v: %v", ds, err)
    	}
    
    	// If the DaemonSet is being deleted (either by foreground deletion or
    	// orphan deletion), we cannot be sure if the DaemonSet history objects
    	// it owned still exist -- those history objects can either be deleted
    	// or orphaned. Garbage collector doesn't guarantee that it will delete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "{{server}}",
              "refId": "A"
            }
          ],
          "title": "Avg. Queued Objects",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top