Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 467 for repeats (0.2 sec)

  1. src/go/types/format.go

    	}
    	return sprintf(fset, qf, false, format, args...)
    }
    
    func (check *Checker) trace(pos token.Pos, format string, args ...any) {
    	fmt.Printf("%s:\t%s%s\n",
    		check.fset.Position(pos),
    		strings.Repeat(".  ", check.indent),
    		sprintf(check.fset, check.qualifier, true, format, args...),
    	)
    }
    
    // dump is only needed for debugging
    func (check *Checker) dump(format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/net/http/cgi/cgi_main.go

    	fmt.Printf("\r\n")
    
    	if params.Get("writestderr") != "" {
    		fmt.Fprintf(os.Stderr, "Hello, stderr!\n")
    	}
    
    	if params.Get("bigresponse") != "" {
    		// 17 MB, for OS X: golang.org/issue/4958
    		line := strings.Repeat("A", 1024)
    		for i := 0; i < 17*1024; i++ {
    			fmt.Printf("%s\r\n", line)
    		}
    		return
    	}
    
    	fmt.Printf("test=Hello CGI\r\n")
    
    	keys := make([]string, 0, len(params))
    	for k := range params {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      IntOrString rollingMaxUnavailable = 32 [deprecated = true];
    
      string externalTrafficPolicy = 34;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 35 [deprecated = true];
    
      repeated google.protobuf.Struct ingressPorts = 36;
    
      repeated google.protobuf.Struct additionalContainers = 37;
    
      repeated google.protobuf.Struct configVolumes = 38;
    
      google.protobuf.BoolValue runAsRoot = 45;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/go/types/api.go

    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    // IsValue reports whether the corresponding expression is a value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            when:
            run(":help")
    
            then:
            def schemaFile = file(".gradle/declarative-schema/settings.dcl.schema")
            schemaFile.isFile() && schemaFile.text != ""
        }
    
        def 'reports #kind errors in settings'() {
            given:
            file("settings.gradle.dcl") << """
                rootProject.name = "test"
                $code
            """
    
            when:
            def failure = fails(":help")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                rootProject.name = 'root'
                include 'b'
                includeBuild 'included'
            """
            file("included/settings.gradle") << """
                include 'c'
            """
        }
    
        def "reports successful project configuration progress events"() {
            when:
            runBuild("tasks")
    
            then:
            events.operations.size() == 6
            events.trees == events.operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/sessions/KaBaseSessionProvider.kt

        /**
         * Caches [KaAnalysisPermissionChecker] to avoid repeated [Project.getService] calls in [analyze].
         */
        @KaCachedService
        private val permissionChecker by lazy(LazyThreadSafetyMode.PUBLICATION) {
            KaAnalysisPermissionChecker.getInstance(project)
        }
    
        /**
         * Caches [KaBaseLifetimeTracker] to avoid repeated [Project.getService] calls in [analyze].
         */
        @KaCachedService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/net/ipsock.go

    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    }
    
    var ipStackCaps ipStackCapabilities
    
    // supportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func supportsIPv4() bool {
    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv4Enabled
    }
    
    // supportsIPv6 reports whether the platform supports IPv6 networking
    // functionality.
    func supportsIPv6() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/net/ip.go

    )
    
    // IsUnspecified reports whether ip is an unspecified address, either
    // the IPv4 address "0.0.0.0" or the IPv6 address "::".
    func (ip IP) IsUnspecified() bool {
    	return ip.Equal(IPv4zero) || ip.Equal(IPv6unspecified)
    }
    
    // IsLoopback reports whether ip is a loopback address.
    func (ip IP) IsLoopback() bool {
    	if ip4 := ip.To4(); ip4 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/crossVersionTest/groovy/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskOperationResultCrossVersionTest.groovy

            fixture.writeApiTo(processorProjectDir)
            fixture.writeAnnotationProcessorTo(processorProjectDir)
            fixture.writeSupportLibraryTo(processorProjectDir)
        }
    
        @TargetGradleVersion(">=5.1")
        def "reports annotation processor results for JavaCompile task"() {
            when:
            def events = runBuild("compileJava")
    
            then:
            def operation = events.operation("Task :compileJava")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top