Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for extr6 (0.77 sec)

  1. docs/ko/docs/tutorial/extra-data-types.md

    Nayeon Kim <******@****.***> 1718333110 +0900
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/cpuprof.go

    		osyield()
    	}
    
    	if cpuprof.numExtra+1+len(stk) < len(cpuprof.extra) {
    		i := cpuprof.numExtra
    		cpuprof.extra[i] = uintptr(1 + len(stk))
    		copy(cpuprof.extra[i+1:], stk)
    		cpuprof.numExtra += 1 + len(stk)
    	} else {
    		cpuprof.lostExtra++
    	}
    
    	prof.signalLock.Store(0)
    }
    
    // addExtra adds the "extra" profiling events,
    // queued by addNonGo, to the profile log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ProjectExtensions.kt

    import org.gradle.internal.extensions.stdlib.uncheckedCast
    
    
    inline fun <reified T : Any> Project.setSingletonProperty(value: T) {
        extra[T::class.java.name] = value
    }
    
    
    inline fun <reified T> Project.popSingletonProperty(): T? =
        extra.remove(T::class.java.name)?.uncheckedCast()
    
    
    val Project.extra: ExtraPropertiesExtension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

        def "reports problem for extra property accessed at execution time"() {
            given:
            buildKotlinFile '''
                tasks.register("report") {
                    extra["outputFile"] = file("$buildDir/output.txt")
                    outputs.files(extra["outputFile"])
                    doLast {
                        val outputFile: File by extra
                        outputFile.writeText("")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/apis.go

    	return &corerest.GenericConfig{
    		StorageFactory:              c.Extra.StorageFactory,
    		EventTTL:                    c.Extra.EventTTL,
    		LoopbackClientConfig:        c.Generic.LoopbackClientConfig,
    		ServiceAccountIssuer:        c.Extra.ServiceAccountIssuer,
    		ExtendExpiration:            c.Extra.ExtendExpiration,
    		ServiceAccountMaxExpiration: c.Extra.ServiceAccountMaxExpiration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. cmd/bootstrap-peer-server.go

    		ev, ok := s2.MinioEnv[k]
    		if !ok {
    			missing = append(missing, k)
    		} else if v != ev {
    			mismatching = append(mismatching, k)
    		}
    	}
    	var extra []string
    	for k := range s2.MinioEnv {
    		_, ok := s1.MinioEnv[k]
    		if !ok {
    			extra = append(extra, k)
    		}
    	}
    	msg := "Expected same MINIO_ environment variables and values across all servers: "
    	if len(missing) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/internal/trace/base.go

    // fundamental data structure across.
    type baseEvent struct {
    	typ  event.Type
    	time Time
    	args timedEventArgs
    }
    
    // extra returns a slice representing extra available space in args
    // that the parser can use to pass data up into Event.
    func (e *baseEvent) extra(v version.Version) []uint64 {
    	switch v {
    	case version.Go122:
    		return e.args[len(go122.Specs()[e.typ].Args)-1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGenerator.java

                    String types = filteredRequests.stream()
                        .map(request -> request.getRequestExtras().getByType(RequestExtra.InterceptJvmCalls.class))
                        .map(extra -> extra.get().getImplementationClassName() + "$Factory")
                        .distinct()
                        .sorted()
                        .collect(Collectors.joining("\n"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. cluster/addons/metrics-server/metrics-server-deployment.yaml

              mountPath: /etc/config
            command:
              - /pod_nanny
              - --config-dir=/etc/config
              - --cpu={{ base_metrics_server_cpu }}
              - --extra-cpu=0.5m
              - --memory={{ base_metrics_server_memory }}
              - --extra-memory={{ metrics_server_memory_per_node }}Mi
              - --threshold=5
              - --deployment=metrics-server-v0.7.1
              - --container=metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/runtime/cgo.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname set_crosscall2
    var set_crosscall2 func()
    
    // cgoHasExtraM is set on startup when an extra M is created for cgo.
    // The extra M must be created before any C/C++ code calls cgocallback.
    var cgoHasExtraM bool
    
    // cgoUse is called by cgo-generated code (using go:linkname to get at
    // an unexported name). The calls serve two purposes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top