Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for noscan (0.1 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

        }
    
        def "warns if scan requested but no scan plugin applied"() {
            given:
            scanPlugin.collectConfig = false
    
            when:
            succeeds "t", "--scan"
    
            then:
            scanPlugin.issuedNoPluginWarning(output)
        }
    
        def "does not warns if scan requested but no scan plugin unsupported"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-configuration-breakdown.png

    build-scan-configuration-breakdown.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 131.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-dependency-management-build-scan.png

    troubleshooting-dependency-management-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  4. src/runtime/preempt.go

    		return
    	}
    
    	gp := state.g
    	switch s := readgstatus(gp); s {
    	default:
    		dumpgstatus(gp)
    		throw("unexpected g status")
    
    	case _Grunnable | _Gscan,
    		_Gwaiting | _Gscan,
    		_Gsyscall | _Gscan:
    		casfrom_Gscanstatus(gp, s, s&^_Gscan)
    	}
    
    	if state.stopped {
    		// We stopped it, so we need to re-schedule it.
    		ready(gp, 0, true)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/BUILD

        },
        tags_override = {
            # This test has high memory usage. It causes OOM in msan mode.
            "replace_cast_hacks_with_tf_xla_ops_large_constants.mlir": ["nomsan"],
        },
        test_file_exts = ["mlir"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/math/big/example_test.go

    	i := new(big.Int)
    	_, err := fmt.Sscan("18446744073709551617", i)
    	if err != nil {
    		log.Println("error scanning value:", err)
    	} else {
    		fmt.Println(i)
    	}
    	// Output: 18446744073709551617
    }
    
    func ExampleFloat_Scan() {
    	// The Scan function is rarely used directly;
    	// the fmt package recognizes it as an implementation of fmt.Scanner.
    	f := new(big.Float)
    	_, err := fmt.Sscan("1.19282e99", f)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/fossil/hello.txt

    handle fossil
    
    env USER=rsc
    fossil init --date-override 2017-09-22T01:15:36Z hello.fossil
    fossil open --keep hello.fossil
    
    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateStored()
    
            when:
            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateLoaded()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. scan.go

    		field.NewValuePool.Put(values[idx])
    	}
    }
    
    // ScanMode scan data mode
    type ScanMode uint8
    
    // scan modes
    const (
    	ScanInitialized         ScanMode = 1 << 0 // 1
    	ScanUpdate              ScanMode = 1 << 1 // 2
    	ScanOnConflictDoNothing ScanMode = 1 << 2 // 4
    )
    
    // Scan scan rows into db statement
    func Scan(rows Rows, db *DB, mode ScanMode) {
    	var (
    		columns, _          = rows.Columns()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/scan.go

    cui fliter <******@****.***> 1711121504 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top