Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 194 for Visiting (0.12 sec)

  1. cmd/kubeadm/app/cmd/token_test.go

    	fullPath := filepath.Join(tmpDir, testConfigTokenFile)
    
    	// test dryRun = false on a non-exisiting file
    	if _, err = cmdutil.GetClientSet(fullPath, false); err == nil {
    		t.Errorf("GetClientSet(); dry-run: false; did no fail for test file %q: %v", fullPath, err)
    	}
    
    	// test dryRun = true on a non-exisiting file
    	if _, err = cmdutil.GetClientSet(fullPath, true); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

                }
            }
        }
    
        /**
         * Allows GET requests for the given URL, returning an apache-compatible directory listing with the given File names.
         */
        void allowGetDirectoryListing(String path, File directory) {
            allow(path, false, ['GET'], new ActionSupport("return listing of directory $directory.name") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    }
    
    // WebListData holds the data needed to generate HTML source code listing.
    type WebListData struct {
    	Total string
    	Files []WebListFile
    }
    
    // WebListFile holds the per-file information for HTML source code listing.
    type WebListFile struct {
    	Funcs []WebListFunc
    }
    
    // WebListFunc holds the per-function information for HTML source code listing.
    type WebListFunc struct {
    	Name       string
    	File       string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    The following command upgrades the Wrapper to the `latest` version:
    
    [listing,subs=+attributes]
    ----
    $ ./gradlew wrapper --gradle-version latest
    include::{snippetsPath}/wrapper/simple/tests/wrapperGradleVersionUpgrade.out[]
    ----
    
    The following command upgrades the Wrapper to a specific version:
    
    [listing,subs=+attributes]
    ----
    $ ./gradlew wrapper --gradle-version {gradleVersion}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    * when no variants from the producer match the consumer attributes (incompatibility error)
    
    [[sub:variant-ambiguity]]
    === Dealing with ambiguity errors
    
    An ambiguous variant selection looks like the following:
    
    [listing]
    ----
    > Could not resolve all files for configuration ':compileClasspath'.
       > Could not resolve project :lib.
         Required by:
             project :ui
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            } as Action)
    
            when:
            server.stubListFile(temporaryFolder.testDirectory, bucketName)
    
            then:
            def listing = s3Client.listDirectChildren(new URI("s3://${bucketName}/maven/release/"))
            listing as Set == ([FILE_NAME] + directSubdirectories) as Set
    
            where:
            authenticationImpl | authenticationType
            awsCredentials     | "authenticated"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    [listing]
    ----
    $ ./gradlew publishPlugins
    ----
    
    You can validate your plugins before publishing using the `--validate-only` flag:
    
    [listing]
    ----
    $ ./gradlew publishPlugins --validate-only
    ----
    
    If you have not configured your `gradle.properties` for the {portal}, you can specify them on the command-line:
    
    [listing]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/runtime/mgclimit.go

    	//
    	// gomaxprocs isn't used directly so as to keep this structure unit-testable.
    	nprocs int32
    }
    
    // limiting returns true if the CPU limiter is currently enabled, meaning the Go GC
    // should take action to limit CPU utilization.
    //
    // It is safe to call concurrently with other operations.
    func (l *gcCPULimiterState) limiting() bool {
    	return l.enabled.Load()
    }
    
    // startGCTransition notifies the limiter of a GC transition.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

        }
    
        private List<ModuleComponentResolveState> sortLatestFirst(Collection<? extends ModuleComponentResolveState> listing) {
            return CollectionUtils.sort(listing, Collections.reverseOrder(versionComparator));
        }
    
        private static class DynamicArtifactResolutionDetails implements ArtifactResolutionDetails {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. internal/kms/kms.go

    )
    
    // ListRequest is a structure containing fields
    // and options for listing keys.
    type ListRequest struct {
    	// Prefix is an optional prefix for filtering names.
    	// A list operation only returns elements that match
    	// this prefix.
    	// An empty prefix matches any value.
    	Prefix string
    
    	// ContinueAt is the name of the element from where
    	// a listing should continue. It allows paginated
    	// listings.
    	ContinueAt string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top