Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for place (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    private
    val allowedProperties = setOf(
        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
        "java.awt.headless", // Some popular plugins modify this property at runtime.
        "java.version",
        "java.version.date",
        "java.vendor",
        "java.vendor.url",
        "java.vendor.version",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. internal/config/subnet/config.go

    	}
    	if c.APIKey != "" {
    		os.Setenv("CONSOLE_SUBNET_API_KEY", c.APIKey)
    	}
    	if c.Proxy != "" {
    		os.Setenv("CONSOLE_SUBNET_PROXY", c.Proxy)
    	}
    	os.Setenv("CONSOLE_SUBNET_URL", c.BaseURL)
    }
    
    // Update - in-place update with new license and registration information.
    func (c *Config) Update(ncfg Config, isDevEnv bool) {
    	configLock.Lock()
    	defer configLock.Unlock()
    
    	c.License = ncfg.License
    	c.APIKey = ncfg.APIKey
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/runtime/tracetime.go

    // traceFrequency writes a batch with a single EvFrequency event.
    //
    // freq is the number of trace clock units per second.
    func traceFrequency(gen uintptr) {
    	w := unsafeTraceWriter(gen, nil)
    
    	// Ensure we have a place to write to.
    	w, _ = w.ensure(1 + traceBytesPerNumber /* traceEvFrequency + frequency */)
    
    	// Write out the string.
    	w.byte(byte(traceEvFrequency))
    	w.varint(traceClockUnitsPerSecond())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/copyelim.go

    //	w = phi(v, w, x)
    //
    // and would that be useful?
    func phielim(f *Func) {
    	for {
    		change := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				// This is an early place in SSA where all values are examined.
    				// Rewrite all 0-sized Go values to remove accessors, dereferences, loads, etc.
    				if t := v.Type; (t.IsStruct() || t.IsArray()) && t.Size() == 0 {
    					if t.IsStruct() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

    import java.nio.file.Path;
    import java.util.Optional;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * The option of a command-line tool where to place the paths to some dependencies.
     * A {@code PathType} can identify the Java class-path, the Java module-path,
     * or another kind of path for another programming language for example.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

     */
    public inline fun <reified PSI : PsiElement> KaSymbol.sourcePsiSafe(): PSI? {
        if (origin != KaSymbolOrigin.SOURCE && origin != KaSymbolOrigin.JAVA_SOURCE) return null
    
        return psi as? PSI
    }
    
    /**
     * A place where [KaSymbol] came from
     */
    public enum class KaSymbolOrigin {
        /**
         * Declaration from Kotlin sources
         */
        SOURCE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
            )
        }
    
        private fun checkSessionValidityBeforeModification(
            sessions: List<SESSION>,
            testServices: TestServices,
        ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/kube/apimirror/probe.go

    type GRPCAction struct {
    	// Port number of the gRPC service. Number must be in the range 1 to 65535.
    	Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
    
    	// Service is the name of the service to place in the gRPC HealthCheckRequest
    	// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
    	//
    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/go/printer/gobuild.go

    		}
    		// Skip over \n at end of line.
    		if pos >= len(p.output) || !isNL(p.output[pos]) {
    			break
    		}
    		pos++
    
    		if blank {
    			insert = pos
    		}
    	}
    
    	// If there is a //go:build comment before the place we identified,
    	// use that point instead. (Earlier in the file is always fine.)
    	if len(p.goBuild) > 0 && p.goBuild[0] < insert {
    		insert = p.goBuild[0]
    	} else if len(p.plusBuild) > 0 && p.plusBuild[0] < insert {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/internal/trace/batchcursor.go

    	return n, timestamp(ts), nil
    }
    
    func heapInsert(heap []*batchCursor, bc *batchCursor) []*batchCursor {
    	// Add the cursor to the end of the heap.
    	heap = append(heap, bc)
    
    	// Sift the new entry up to the right place.
    	heapSiftUp(heap, len(heap)-1)
    	return heap
    }
    
    func heapUpdate(heap []*batchCursor, i int) {
    	// Try to sift up.
    	if heapSiftUp(heap, i) != i {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top