Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for Scans (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <<dependency_management_basics.adoc#dependency_management_basics,Part 6.>> Dependency Management +
    <<task_basics.adoc#task_basics,Part 7.>> Tasks +
    <<plugin_basics.adoc#plugin_basics,Part 8.>> Plugins +
    <<build_scans.adoc#build_scans,Part 9.>> Build Scans +
    <<gradle_optimizations.adoc#gradle_optimizations,Part 10.>> Gradle Optimizations +
    
    [[getting_started]]
    == 2. Gradle Tutorial
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/internal/abi/symtab.go

    	// SPWrite functions. Stopping at an SPWrite function is considered
    	// to be an incomplete unwinding of the stack. In certain contexts
    	// (in particular garbage collector stack scans) that is a fatal error.
    	FuncFlagSPWrite
    
    	// FuncFlagAsm indicates that a function was implemented in assembly.
    	FuncFlagAsm
    )
    
    // A FuncID identifies particular functions that need to be treated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            if (Boolean.getBoolean(UNSUPPORTED_TOGGLE)) {
                return UNSUPPORTED_TOGGLE_MESSAGE;
            } else if (buildModelParameters.isConfigurationCache()) {
                return "Build scans have been disabled due to incompatibility between your Gradle Enterprise plugin version (" + pluginVersion + ") and configuration caching. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            }
    
            @Override
            public void applyTo(boolean value, StartParameterInternal settings, Origin origin) {
                if (value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    		return gover{}
    	}
    	v.kind, x = x[:i], x[i:]
    	if x == "" {
    		return v
    	}
    	v.pre, x, ok = cutInt(x)
    	if !ok || x != "" {
    		return gover{}
    	}
    
    	return v
    }
    
    // cutInt scans the leading decimal number at the start of x to an integer
    // and returns that value and the rest of the string.
    func cutInt(x string) (n, rest string, ok bool) {
    	i := 0
    	for i < len(x) && '0' <= x[i] && x[i] <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

            BuildOperationCategory buildOperationCategory = BuildOperationCategory.toCategory(metadata);
            if (buildOperationCategory == BuildOperationCategory.TASK) {
                // This is a legacy quirk.
                // Scans use this to determine that progress logging is indicating start/finish of tasks.
                // This can be removed in Gradle 5.0 (along with the concept of a “logging category” of an operation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    == Step 6. Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes is to publish a link:https://scans.gradle.com[Build Scan].
    To do so, run the `build` task again with the `--scan` flag.
    
    [source]
    ----
    $ ./gradlew build --scan
    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    }
    
    // GuessJSONStream scans the provided reader up to size, looking
    // for an open brace indicating this is JSON. It will return the
    // bufio.Reader it creates for the consumer.
    func GuessJSONStream(r io.Reader, size int) (io.Reader, []byte, bool) {
    	buffer := bufio.NewReaderSize(r, size)
    	b, _ := buffer.Peek(size)
    	return buffer, b, hasJSONPrefix(b)
    }
    
    // IsJSONBuffer scans the provided buffer, looking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/types.go

    	// foo.slice/foo-bar.slice
    	Name(name CgroupName) string
    	// CgroupName converts the literal cgroupfs name on the host to an internal identifier.
    	CgroupName(name string) CgroupName
    	// Pids scans through all subsystems to find pids associated with specified cgroup.
    	Pids(name CgroupName) []int
    	// ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares.
    	ReduceCPULimits(cgroupName CgroupName) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top