Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 213 for spcs (0.06 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptChangesIntegrationTest.groovy

            outputDoesNotContain fixture.expectedOutputAfterChange
            configurationCache.assertStateLoaded()
    
            where:
            scriptChangeSpec << ScriptChangeFixture.specs()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry.go

    	}
    
    	for _, m := range ct.Tracing {
    		names := getProviderNames(m.Providers)
    
    		specs := []*TracingSpec{&clientSpec, &serverSpec}
    		if m.Match != nil {
    			switch m.Match.Mode {
    			case tpb.WorkloadMode_CLIENT:
    				specs = []*TracingSpec{&clientSpec}
    			case tpb.WorkloadMode_SERVER:
    				specs = []*TracingSpec{&serverSpec}
    			}
    		}
    
    		if len(names) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. src/net/http/cookie.go

    		case "httponly":
    			c.HttpOnly = true
    			continue
    		case "domain":
    			c.Domain = val
    			continue
    		case "max-age":
    			secs, err := strconv.Atoi(val)
    			if err != nil || secs != 0 && val[0] == '0' {
    				break
    			}
    			if secs <= 0 {
    				secs = -1
    			}
    			c.MaxAge = secs
    			continue
    		case "expires":
    			c.RawExpires = val
    			exptime, err := time.Parse(time.RFC1123, val)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/internal/trace/raw/event.go

    // String returns the canonical string representation of the event.
    //
    // This format is the same format that is parsed by the TextReader
    // and emitted by the TextWriter.
    func (e *Event) String() string {
    	spec := e.Version.Specs()[e.Ev]
    
    	var s strings.Builder
    	s.WriteString(spec.Name)
    	for i := range spec.Args {
    		s.WriteString(" ")
    		s.WriteString(spec.Args[i])
    		s.WriteString("=")
    		s.WriteString(strconv.FormatUint(e.Args[i], 10))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // interface to the internal interface.
    type internalSymbolizer struct {
    	Symbolizer
    }
    
    func (s *internalSymbolizer) Symbolize(mode string, srcs plugin.MappingSources, prof *profile.Profile) error {
    	isrcs := MappingSources{}
    	for m, s := range srcs {
    		isrcs[m] = s
    	}
    	return s.Symbolizer.Symbolize(mode, isrcs, prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

            configurationCacheRun spec.copyTask
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksSkipped(":$spec.copyTask")
    
            where:
            spec << DefaultExcludesFixture.specs()
        }
    
        def "default excludes defined in build#scriptLanguage are ignoring for snapshotting"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.health.gc;
    
    import com.google.common.annotations.VisibleForTesting;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.time.Time;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.lang.management.GarbageCollectorMXBean;
    import java.lang.management.ManagementFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphEdge.java

     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph;
    
    import org.gradle.api.artifacts.Dependency;
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.specs.ExcludeSpec;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.internal.component.model.DependencyMetadata;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

    import org.gradle.api.internal.attributes.DefaultAttributesSchema
    import org.gradle.api.internal.attributes.ImmutableAttributes
    import org.gradle.api.specs.Specs
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import org.gradle.internal.component.external.model.ModuleComponentGraphResolveMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                write(rootSpecOf(value))
            }
        }
    
        override suspend fun ReadContext.decode(): FileTreeInternal? =
            decodePreservingIdentity { id ->
                val specs = readNonNull<List<FileTreeSpec>>()
                val fileTrees = specs.map(::fromSpec)
                val tree = fileCollectionFactory.treeOf(fileTrees)
                isolate.identities.putInstance(id, tree)
                tree
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top