Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 804 for emits (0.13 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

            when:
            withInstallations(jdk8, jdk11).run 'compileScala', '-Pchanged', '--info'
            then:
            skipped ':compileScala'
        }
    
        def "compilation emits toolchain usage events"() {
            captureBuildOperations()
    
            def jdkMetadata = AvailableJavaHomes.getJvmInstallationMetadata(AvailableJavaHomes.getDifferentJdk { it.languageVersion.majorVersionNumber in 8..17 })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

    @Requires(UnitTestPreconditions.NotJava8OnMacOs)
    class SettingsScriptExecutionIntegrationTest extends AbstractIntegrationSpec {
        @Requires(IntegTestPreconditions.AnyActiveFeature)
        def "emits deprecation warnings when enabling inactive #feature feature"() {
            given:
            settingsFile << """
                enableFeaturePreview('$feature')
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                    }
                }
            """
            expect:
            fails("help")
            failureHasCause("Build cache type 'CustomBuildCache' has not been registered.")
        }
    
        def "emits a useful message when using the build cache"() {
            when:
            executer.withBuildCacheEnabled()
            succeeds("help", "--info")
            then:
            outputContains("Using local directory build cache")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. src/crypto/x509/pkcs8_test.go

    // Generated using:
    //
    //	openssl ecparam -genkey -name secp521r1 | openssl pkcs8 -topk8 -nocrypt
    //
    // Note that OpenSSL will truncate the private key if it can (i.e. it emits it
    // like an integer, even though it's an OCTET STRING field). Thus if you
    // regenerate this you may, randomly, find that it's a byte shorter than
    // expected and the Go test will fail to recreate it exactly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                public class Driver {
                    public static void main(String[] args) {
                    ${body}
                    }
                }
            """
        }
    
        def "emits deprecation warning if executable specified as relative path"() {
            given:
            def executable = TextUtil.normaliseFileSeparators(Jvm.current().javaExecutable.toString())
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/log/slog/logger.go

    	}
    	return &Logger{handler: h}
    }
    
    // With calls [Logger.With] on the default logger.
    func With(args ...any) *Logger {
    	return Default().With(args...)
    }
    
    // Enabled reports whether l emits log records at the given context and level.
    func (l *Logger) Enabled(ctx context.Context, level Level) bool {
    	if ctx == nil {
    		ctx = context.Background()
    	}
    	return l.Handler().Enabled(ctx, level)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    func typedslicecopy(typ *_type, dstPtr unsafe.Pointer, dstLen int, srcPtr unsafe.Pointer, srcLen int) int {
    	n := dstLen
    	if n > srcLen {
    		n = srcLen
    	}
    	if n == 0 {
    		return 0
    	}
    
    	// The compiler emits calls to typedslicecopy before
    	// instrumentation runs, so unlike the other copying and
    	// assignment operations, it's not instrumented in the calling
    	// code and needs its own instrumentation.
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/dist/buildgo.go

    //
    // the second make.bash will not find the files generated by the first make.bash
    // and will not clean up properly.
    const generatedHeader = "// Code generated by go tool dist; DO NOT EDIT.\n\n"
    
    // writeHeader emits the standard "generated by" header for all files generated
    // by dist.
    func writeHeader(w io.Writer) {
    	fmt.Fprint(w, generatedHeader)
    }
    
    // mkzdefaultcc writes zdefaultcc.go:
    //
    //	package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:44:00 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

        else if (keep_dims.getValue())
          out_shape.push_back(1);
      }
      return RankedTensorType::get(out_shape, element_ty);
    }
    
    // Verifies that the given types are cast compatible. If not, emits appropriate
    // error for the given op. If mask_one_dim is set to true, then the types are
    // allowed to have one mismatching dimension. Masking one of the dimensions is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/covdata/dump.go

    		fmt.Fprintf(os.Stderr, "  \tand emits text format into file 'out.txt'\n")
    	case percentMode:
    		fmt.Fprintf(os.Stderr, "  go tool covdata percent -i=dir1,dir2\n\n")
    		fmt.Fprintf(os.Stderr, "  \tmerges data from input directories dir1+dir2\n")
    		fmt.Fprintf(os.Stderr, "  \tand emits percentage of statements covered\n\n")
    	case funcMode:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top