Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for listKind (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    It can be set with the environment variable `GRADLE_USER_HOME`.
    
    TIP: Not to be confused with the `GRADLE_HOME`, the optional installation directory for Gradle.
    
    It is roughly structured as follows:
    
    [listing]
    ----
    ├── caches // <1>
    │   ├── 4.8 // <2>
    │   ├── 4.9 // <2>
    │   ├── ⋮
    │   ├── jars-3 // <3>
    │   └── modules-2 // <3>
    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d // <5>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. pkg/kube/krt/filter.go

    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    		// First, lookup directly by key. This is cheap
    		// an empty set will match none
    		if !f.keys.IsNil() && !f.keys.Contains(string(GetKey[any](object))) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    	if err != nil {
    		// Since we're getting stuff from a local cache, it is basically
    		// impossible to get this error.
    		c.eventRecorder.Eventf(service, v1.EventTypeWarning, "FailedToListPods",
    			"Error listing Pods for Service %s/%s: %v", service.Namespace, service.Name, err)
    		return err
    	}
    
    	esLabelSelector := labels.Set(map[string]string{
    		discovery.LabelServiceName: service.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	cidrUpdateWorkers = 30
    
    	// cidrUpdateRetries is the no. of times a NodeSpec update will be retried before dropping it.
    	cidrUpdateRetries = 3
    )
    
    // nodePollInterval is used in listing node
    var nodePollInterval = 10 * time.Second
    
    // CIDRAllocator is an interface implemented by things that know how
    // to allocate/occupy/recycle CIDR for nodes.
    type CIDRAllocator interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/StartParameterResolutionOverride.java

                result.failed(new ModuleVersionResolveException(dependency.getSelector(), () -> String.format("No cached version listing for %s available for offline mode.", dependency.getSelector())));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    }
    
    // return URL for a listing pending multipart uploads.
    func getListMultipartURL(endPoint, bucketName string) string {
    	queryValue := url.Values{}
    	queryValue.Set("uploads", "")
    	return makeTestTargetURL(endPoint, bucketName, "", queryValue)
    }
    
    // return URL for listing pending multipart uploads with parameters.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            0 * moduleDescriptorCache._
    
            where:
            lastModified << [new Date(), null]
        }
    
        def "does not use cache when module version listing can be determined locally"() {
            def dependency = Mock(ModuleDependencyMetadata)
            def result = new DefaultBuildableModuleVersionListingResolveResult()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    You can also list the tasks only available in the `app` subproject by running `./gradlew :app:tasks`.
    
    TIP: You can obtain more information in the task listing using the `--all` option: `./gradlew tasks --all`.
    
    In <<part1_gradle_init.adoc#part1_begin,part 1>> of the tutorial, we ran the `build` task using the `./gradlew build` command.
    
    == Step 2. Understanding Tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/testing/fstest/testfs.go

    		return nil
    	}
    	return d
    }
    
    // checkDir checks the directory dir, which is expected to exist
    // (it is either the root or was found in a directory listing with IsDir true).
    func (t *fsTester) checkDir(dir string) {
    	// Read entire directory.
    	t.dirs = append(t.dirs, dir)
    	d := t.openDir(dir)
    	if d == nil {
    		return
    	}
    	list, err := d.ReadDir(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. cmd/bucket-listobjects-handlers.go

    func (api objectAPIHandlers) ListObjectsV2Handler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListObjectsV2")
    	api.listObjectsV2Handler(ctx, w, r, false)
    }
    
    // listObjectsV2Handler performs listing either with or without extra metadata.
    func (api objectAPIHandlers) listObjectsV2Handler(ctx context.Context, w http.ResponseWriter, r *http.Request, metadata bool) {
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top