Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 379 for createfing (0.16 sec)

  1. platforms/core-configuration/configuration-cache/build.gradle.kts

        id("gradlebuild.kotlin-dsl-sam-with-receiver")
        id("gradlebuild.kotlin-experimental-contracts")
    }
    
    description = "Configuration cache implementation"
    
    val configurationCacheReportPath by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
        attributes { attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named("configuration-cache-report")) }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    public abstract class PersistentList<T> implements Iterable<T> {
        @SuppressWarnings("unchecked")
        public static <T> PersistentList<T> of() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                        content {
                            includeGroup("android-studio")
                        }
                    }
                }
    
                val androidStudioRuntime by configurations.creating
                dependencies {
                    val extension = when {
                        BuildEnvironment.isWindows -> "windows.zip"
                        BuildEnvironment.isMacOsX && BuildEnvironment.isIntel -> "mac.zip"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. doc/README.md

    # Release Notes
    
    The `initial` and `next` subdirectories of this directory are for release notes.
    
    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    		export _MINIO_LDAP_TEST_SERVER=localhost:1389
    		echo "Using default LDAP endpoint: $_MINIO_LDAP_TEST_SERVER"
    	fi
    
    	rm -rf /tmp/data
    }
    
    create_iam_content_in_old_minio() {
    	echo "Creating IAM content in old minio instance."
    
    	MINIO_CI_CD=1 ./minio.${OLD_VERSION} server /tmp/data/{1...4} &
    	sleep 5
    
    	set -x
    	mc alias set old-minio http://localhost:9000 minioadmin minioadmin
    	mc ready old-minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    // Multicluster structure holds the remote kube Controllers and multicluster specific attributes.
    type Multicluster struct {
    	// serverID of this pilot instance used for leader election
    	serverID string
    
    	// options to use when creating kube controllers
    	opts Options
    
    	// client for reading remote-secrets to initialize multicluster registries
    	client kubernetes.Interface
    	s      server.Instance
    
    	serviceEntryController *serviceentry.Controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/kubelet/util/swap/swap_util.go

    		}
    
    		if mountPath == "" {
    			klog.ErrorS(errors.New("mount path is empty, falling back to /tmp"), "")
    		}
    
    		mountPath, err = os.MkdirTemp(mountPath, "tmpfs-noswap-test-")
    		if err != nil {
    			klog.InfoS("error creating dir to test if tmpfs noswap is enabled. Assuming not supported", "mount path", mountPath, "error", err)
    			return false
    		}
    
    		defer func() {
    			err = os.RemoveAll(mountPath)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. build/root/Makefile

    #    the spec at test/e2e_node/system/specs/gke.yaml. If unspecified, the
    #    default built-in spec (system.DefaultSpec) will be used.
    #  IMAGES: For REMOTE=true only.  Comma delimited list of images for creating
    #    remote hosts to run tests against.  Defaults to a recent image.
    #  HOSTS: For REMOTE=true only.  Comma delimited list of running gce hosts to
    #    run tests against.  Defaults to "".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         */
        JAVA_SOURCE,
    
        /**
         * A Kotlin declaration came from some Java library
         */
        JAVA_LIBRARY,
    
        /**
         * A synthetic function that is called as a lambda argument when creating a SAM interface object, e.g.,
         * ```
         * val isEven = <caret>IntPredicate { it % 2 == 0 }
         * ```
         */
        SAM_CONSTRUCTOR,
    
        /**
         * Consider the following code:
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/config_test.go

    	}
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			i, err := NewImagesList("", &tc.cfg)
    			if err != nil {
    				t.Fatalf("did not expect an error while creating the Images command: %v", err)
    			}
    
    			var output bytes.Buffer
    
    			if err = i.Run(&output, printer); err != nil {
    				t.Fatalf("did not expect an error running the Images command: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top