Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 466 for _objects (0.42 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

                    && Objects.equal(excludes, that.excludes)
                    && Objects.equal(reason, that.reason)
                    && Objects.equal(attributes, that.attributes)
                    && Objects.equal(requestedCapabilities, that.requestedCapabilities)
                    && Objects.equal(endorsing, that.endorsing)
                    && Objects.equal(dependencyArtifact, that.dependencyArtifact);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. cmd/object_api_suite_test.go

    		}
    		if result.Objects[1].Name != "newPrefix2" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[1].Name)
    		}
    		if result.Objects[2].Name != "obj0" {
    			t.Errorf("%s: Expected the object name to be `%s`, but instead found `%s`", instanceType, "newPrefix", result.Objects[2].Name)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. cmd/bucket-listobjects-handlers.go

    }
    
    // ListObjectsV2MHandler - GET Bucket (List Objects) Version 2 with metadata.
    // --------------------------
    // This implementation of the GET operation returns some or all (up to 1000)
    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            "SetProperty<String>"         | "objects.setProperty(String)"         | "[]"                 | "[]"
            "SetProperty<String>"         | "objects.setProperty(String)"         | "['abc']"            | ['abc']
            "SetProperty<String>"         | "objects.setProperty(String)"         | "null"               | "null"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                TypedCollector<?> that = (TypedCollector<?>) o;
                return Objects.equal(type, that.type) &&
                    Objects.equal(delegate, that.delegate);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

            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(elements))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(bundling))
            }
            isCanBeResolved = false
            isCanBeConsumed = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pkg/controller/deployment/deployment_controller_test.go

    	f.podLister = append(f.podLister, pods...)
    	f.objects = append(f.objects, d, rs1, rs2)
    	f.objects = append(f.objects, objects...)
    
    	// Start the fixture.
    	c, informers, err := f.newController(ctx)
    	if err != nil {
    		b.Fatalf("error creating Deployment controller: %v", err)
    	}
    	stopCh := make(chan struct{})
    	defer close(stopCh)
    	informers.Start(stopCh)
    
    	b.ReportAllocs()
    	b.ResetTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. pilot/test/xds/fake.go

    	for k8sCluster, clusterObjs := range opts.KubernetesObjectsByCluster {
    		objects[k8sCluster] = append(objects[k8sCluster], clusterObjs...)
    	}
    
    	if len(objects) == 0 {
    		return map[cluster.ID][]runtime.Object{opts.DefaultClusterName: {}}
    	}
    
    	return objects
    }
    
    func kubernetesObjectsFromString(s string) ([]runtime.Object, error) {
    	var objects []runtime.Object
    	decode := kubelib.IstioCodec.UniversalDeserializer().Decode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_3site_replication.sh

    sleep 10
    
    ./mc stat sitea/bucket/new-test-encrypted-object
    ./mc stat siteb/bucket/new-test-encrypted-object
    ./mc stat sitec/bucket/new-test-encrypted-object
    
    ./mc ls -r sitea/bucket/
    ./mc ls -r siteb/bucket/
    ./mc ls -r sitec/bucket/
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/generated.proto

      // Must match in order to be controlled.
      // It must match the pod template's labels.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector selector = 1;
    
      // An object that describes the pod that will be created.
      // The DaemonSet will create exactly one copy of this pod on every node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top