Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for deflated (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            then:
            cachedClasspath.asFiles == [cachedFile]
            def zip = new ZipTestFixture(cachedFile)
            zip.hasCompression("a.class", ZipEntry.DEFLATED)
            zip.hasCompression("res.txt", ZipEntry.STORED)
        }
    
        def "uses non-file URL from origin"() {
            given:
            def file = testDir.file("thing.jar")
            jar(file)
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-11 09:51
    - 20.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-08 11:29
    - 10.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    		}
    	}
    
    	for key := range updates.ConfigsUpdated {
    		// deleted clusters for this config.
    		var deleted []string
    		var svcs []*model.Service
    		switch key.Kind {
    		case kind.ServiceEntry:
    			svcs, deleted = configgen.deltaFromServices(key, proxy, updates.Push, serviceClusters,
    				servicePortClusters, subsetClusters)
    		case kind.DestinationRule:
    			svcs, deleted = configgen.deltaFromDestinationRules(key, proxy, subsetClusters)
    		}
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-06-13 01:56
    - 33K bytes
    - Viewed (0)
  4. pilot/pkg/xds/deltatest.go

    	sotwRes model.Resources,
    	deltaRes model.Resources,
    	deleted model.DeletedResources,
    	usedDelta bool,
    	delta model.ResourceDelta,
    	incremental bool,
    ) {
    	current := con.proxy.GetWatchedResource(w.TypeUrl).LastResources
    	if current == nil {
    		log.Debugf("ADS:%s: resources initialized", v3.GetShortType(w.TypeUrl))
    		return
    	}
    	if deltaRes == nil && deleted == nil && len(sotwRes) == 0 {
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-06-13 01:56
    - 5.7K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    			},
    			itemsInQueue:    1,
    			deletedPodNames: sets.New("a", "b"),
    		},
    		{
    			name:  "no nodes with PodDisruptionConditions enabled",
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-06-12 08:16
    - 29K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    	// Version of the file.
    	VersionID string `msg:"vid,omitempty"`
    
    	// Indicates if the version is the latest
    	IsLatest bool `msg:"is"`
    
    	// Deleted is set when this FileInfo represents
    	// a deleted marker for a versioned bucket.
    	Deleted bool `msg:"del"`
    
    	// TransitionStatus is set to Pending/Complete for transitioned
    	// entries based on state of transition
    	TransitionStatus string `msg:"ts"`
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-06-10 15:51
    - 15.7K bytes
    - Viewed (0)
  7. pilot/pkg/features/telemetry.go

    	EnableTelemetryLabel = env.Register("PILOT_ENABLE_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-06-10 14:36
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

                )
                withProblemsWithStackTraceCount(0)
            }
        }
    
        def "task with type declared in Groovy script is up-to-date when no inputs have changed"() {
            given:
            taskTypeWithOutputFileProperty()
            buildFile << """
                tasks.register("a", FileProducer) {
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-08 11:29
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    	//
    	// Invariant: Uses[id].Pos() != id.Pos()
    	Uses map[*syntax.Name]Object
    
    	// Implicits maps nodes to their implicitly declared objects, if any.
    	// The following node and object types may appear:
    	//
    	//     node               declared object
    	//
    	//     *syntax.ImportDecl    *PkgName for imports without renames
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-06-10 13:48
    - 17.4K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	if jobCtx.finishedCondition != nil {
    		deleted, err := jm.deleteActivePods(ctx, &job, jobCtx.activePods)
    		if deleted != active || !satisfiedExpectations {
    			// Can't declare the Job as finished yet, as there might be remaining
    			// pod finalizers or pods that are not in the informer's cache yet.
    			jobCtx.finishedCondition = nil
    		}
    		active -= deleted
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-06-10 23:56
    - 77.6K bytes
    - Viewed (1)
Back to top