Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 197 for noscan (0.09 sec)

  1. cmd/mrf.go

    			scan := madmin.HealNormalScan
    			if u.scanMode != 0 {
    				scan = u.scanMode
    			}
    			if u.object == "" {
    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. .github/workflows/osv-scanner-scheduled.yml

    name: OSV-Scanner Scheduled Scan
    
    on:
      schedule:
        - cron: 0 4 * * 1
    
    permissions:
      # Require writing security events to upload SARIF file to security tab
      security-events: write
      # Only need to read contents
      contents: read
    
    jobs:
      scan-scheduled:
        if: github.repository == 'tensorflow/tensorflow'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:09:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

          description: What version of Gradle are you running?
        validations:
          required: true
      - type: input
        id: build-scan-url
        attributes:
          label: Build scan URL (optional)
          description: |
            You can run your build command with `--scan` to publish a Build Scan to [scans.gradle.com](https://scans.gradle.com/).
        validations:
          required: false
      - type: textarea
        id: environment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-task-execution-build-scan.png

    troubleshooting-task-execution-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
         * @return The list of group ids to scan for the plugin prefix, never {@code null}.
         */
        List<String> getPluginGroups();
    
        /**
         * Sets the list of group ids to scan for the plugin prefix.
         *
         * @param pluginGroups The list of group ids to scan for the plugin prefix, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanClockIntegTest.groovy

     */
    
    package org.gradle.internal.enterprise.legacy
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.scan.time.BuildScanClock
    
    class BuildScanClockIntegTest extends AbstractIntegrationSpec {
    
        def "can access build scan time provider"() {
            when:
            buildFile << """
                def time = project.services.get($BuildScanClock.name).currentTime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dynamic-dependency-build-scan.png

    dependency-management-dynamic-dependency-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.scan.eob;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by the scan plugin to register a listener to be notified about the build finishing.
     */
    public interface BuildScanEndOfBuildNotifier {
    
        interface BuildResult {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatalf("age QueryRow+Scan: %v", err)
    	}
    	if name != "Bob" {
    		t.Errorf("expected name Bob, got %q", name)
    	}
    	if age != 2 {
    		t.Errorf("expected age 2, got %d", age)
    	}
    
    	err = db.QueryRow("SELECT|people|age,name|name=?", "Alice").Scan(&age, &name)
    	if err != nil {
    		t.Fatalf("name QueryRow+Scan: %v", err)
    	}
    	if name != "Alice" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

          with:
            build-scan-publish: true
            build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
            build-scan-terms-of-use-agree: "yes"
    
    ----
    
    https://scans.gradle.com[Gradle Build ScansĀ®] are a great way to view your build results, and provide valuable insights into your build.
    The workflow is configured to automatically publish a Build Scan for each build, accepting the legal terms of use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top