Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 643 for addSdk (0.16 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSet.java

      public static <E> Builder<E> builder() {
        return new Builder<>();
      }
    
      /**
       * Returns a new builder, expecting the specified number of distinct elements to be added.
       *
       * <p>If {@code expectedSize} is exactly the number of distinct elements added to the builder
       * before {@link Builder#build} is called, the builder is likely to perform better than an unsized
       * {@link #builder()} would have.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    * An input property has changed since the previous execution.
    * A non-incremental input file property has changed since the previous execution.
    * One or more output files have changed since the previous execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            then:
            failure.assertHasCause("Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle'")
    
        }
    
        def "can detect a repository added by a plugin"() {
            withProjectPluginAddingRepository()
    
            repository {
                'org:module:1.0'()
            }
    
            settingsFile.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        }
    
        def "out-of-date when any output files properties are added"() {
            when:
            execute(unitOfWork)
            def outputFilesAddedUnitOfWork = builder.withOutputFiles(*: outputFiles, newFile: temporaryFolder.createFile("output-file-2")).build()
    
            then:
            outOfDate(outputFilesAddedUnitOfWork, "Output property 'newFile' has been added for ${outputFilesAddedUnitOfWork.displayName}")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            file("settings.gradle") << defineSettings(typeSafeProjectAccessors)
    
            expect: "a dependency has been added to the api configuration"
            succeeds("dependencies", "--configuration", "api")
            outputContains("com.google.guava:guava:30.1.1-jre")
    
            and: "a dependency has been added to the implementation configuration"
            succeeds("dependencies", "--configuration", "implementation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    	cases := []struct {
    		name   string
    		events []*watchCacheEvent
    	}{
    		{
    			name: "buffer has elements",
    			events: []*watchCacheEvent{
    				{Type: watch.Added, Object: makeTestPod("pod1", 1)},
    				{Type: watch.Added, Object: makeTestPod("pod2", 2)},
    				{Type: watch.Modified, Object: makeTestPod("pod3", 3)},
    			},
    		},
    		{
    			name:   "buffer is empty",
    			events: []*watchCacheEvent{},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go

    	volumetesting "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // Calls AddPodToVolume() to add new pod to new volume
    // Verifies newly added pod/volume exists via
    // PodExistsInVolume() VolumeExists() and GetVolumesToMount()
    func Test_AddPodToVolume_Positive_NewPodNewVolume(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    	// shared informer passed to NewController
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. pkg/xds/server.go

    	}
    	log.Debugf("ADS:%s: RESOURCE CHANGE added %v removed %v %s %s %s", stype,
    		added, removed, id, request.VersionInfo, request.ResponseNonce)
    
    	// For non wildcard resource, if no new resources are subscribed, it means we do not need to push.
    	if !IsWildcardTypeURL(request.TypeUrl) && len(added) == 0 {
    		return false, emptyResourceDelta
    	}
    
    	return true, ResourceDelta{
    		Subscribed: added,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    addToClasspath = false;
                }
                /*
                 * If the test output directory provides some modules of its own, add them.
                 * Except for this unusual case, tests should never be added to the module-path.
                 */
                for (Map.Entry<Path, String> entry : testModules.getModuleNames().entrySet()) {
                    if (!outputModules.containsModule(entry.getValue())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top