Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for Scans (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        private void assertNothingConfigured() {
            def configuredProjects = buildOperations.all(ConfigureProjectBuildOperationType)
            // A synthetic "project configured" operation is fired for each root project for build scans
            assert configuredProjects.every { it.details.projectPath == ':' }
    
            def scripts = buildOperations.all(ApplyScriptPluginBuildOperationType)
            assert scripts.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		}
    		if p+int(info.size) != i {
    			if p == -1 { // no boundary found
    				return -1
    			}
    			return i // boundary after an illegal UTF-8 encoding
    		}
    	}
    	return i
    }
    
    // decomposeSegment scans the first segment in src into rb. It inserts 0x034f
    // (Grapheme Joiner) when it encounters a sequence of more than 30 non-starters
    // and returns the number of bytes consumed from src or iShortDst or iShortSrc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    The `help` task is the perfect candidate to benchmark your migration process.
    In a build that uses only the configuration avoidance API, a link:https://scans.gradle.com/s/o7qmlmmrsfxz4/performance/configuration?openScriptsAndPlugins=WzFd[build scan] shows no tasks created during configuration, and only the tasks executed are created.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. ReadMe.md

    [![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.jetbrains.com/scans?search.rootProjectNames=Kotlin)
    
    # Kotlin Programming Language
    
    Welcome to [Kotlin](https://kotlinlang.org/)!   
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    All letters are lowercase, and words are separated with a dash (`-`) character.
    
    3. *Define the root project name in the settings file*:
    The `rootProject.name` effectively assigns a name to the build, used in reports like Build Scans.
    If the root project name is not set, the name will be the container directory name, which can be unstable (i.e., you can check out your project in any directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/pack/pack.go

    			a, err = archive.New(f)
    		}
    	}
    	if err != nil {
    		log.Fatal(err)
    	}
    	return &Archive{
    		a:        a,
    		files:    files,
    		matchAll: len(files) == 0,
    	}
    }
    
    // scan scans the archive and executes the specified action on each entry.
    func (ar *Archive) scan(action func(*archive.Entry)) {
    	for i := range ar.a.Entries {
    		e := &ar.a.Entries[i]
    		action(e)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

     . link:https://scans.gradle.com[Create a build scan for the Maven build].
    +
    A build scan will make it easier to visualize what's happening in your existing Maven build.
    For Maven builds, you will be able to see the project structure, what plugins are being used, a timeline of the build steps, and more.
    Keep this handy so you can compare it to the Gradle build scans while converting the project.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		return gvi.deviceMounter.GetDeviceMountPath(gvi.volumeSpec)
    	} else {
    		return "", fmt.Errorf("blockVolumeMapper or deviceMounter required")
    	}
    }
    
    // getVolumesFromPodDir scans through the volumes directories under the given pod directory.
    // It returns a list of pod volume information including pod's uid, volume's plugin name, mount path,
    // and volume spec name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. docs/metrics/v3.md

    | `minio_scanner_bucket_scans_finished`      | `counter` | Total number of bucket scans finished since server start   | `server` |
    | `minio_scanner_bucket_scans_started`       | `counter` | Total number of bucket scans started since server start    | `server` |
    | `minio_scanner_directories_scanned`        | `counter` | Total number of directories scanned since server start     | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    When `mergeReruns` is disabled (the default), each execution of a test will be listed as a separate test case.
    
    If you are using link:https://scans.gradle.com[build scans] or link:https://gradle.com/gradle-enterprise-solution-overview/failure-analytics/[Develocity],
    flaky tests will be detected regardless of this setting.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top