Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,017 for deflated (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            then:
            failure.assertHasCause("Mutation of repositories declared in settings is only allowed during settings evaluation")
        }
    
        /**
         * the `buildSrc` directory behaves like an included build. As such, it may have its own settings,
         * so repositories declared in the main build shouldn't be visible to buildSrc.
         */
        def "repositories declared in settings shouldn't be used to resolve dependencies in buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys_test.go

    			file{"file.txt", 9, 0600, false},
    			false,
    		},
    		{
    			"file_cant_exist",
    			`{"Replace": {"deleted": "dummy.txt"}}
    -- deleted/file.txt --
    -- dummy.txt --
    `,
    			"deleted/file.txt",
    			file{},
    			true,
    		},
    		{
    			"deleted",
    			`{"Replace": {"deleted": ""}}
    -- deleted --
    `,
    			"deleted",
    			file{},
    			true,
    		},
    		{
    			"dir_on_disk",
    			`{}
    -- dir/foo.txt --
    `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		},
    		{
    			description: "containers for deleted pods should be removed",
    			containers: []containerTemplate{
    				makeGCContainer("foo", "bar", 1, 1, runtimeapi.ContainerState_CONTAINER_EXITED),
    				makeGCContainer("foo", "bar", 0, 0, runtimeapi.ContainerState_CONTAINER_EXITED),
    				// deleted pods still respect MinAge.
    				makeGCContainer("deleted", "bar1", 2, time.Now().UnixNano(), runtimeapi.ContainerState_CONTAINER_EXITED),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// returned error value err when the specified resource is not found.
    	// Delete *may* return the object that was deleted, or a status object indicating additional
    	// information about deletion.
    	// It also returns a boolean which is set to true if the resource was instantly
    	// deleted or false if it will be deleted asynchronously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. 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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     *
     * The type of the enum entry is the enum class itself. The members declared in an enum entry's body are local to the body and cannot be
     * accessed from the outside. Hence, while it might look like enum entries can declare their own members (see the example below), they do
     * not have a (declared) member scope.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    			expectedHint: framework.Queue,
    		},
    		{
    			name: "create node with non-related labels",
    			pod: st.MakePod().Name("p").SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			newNode:      st.MakeNode().Name("node-a").Label("foo", "bar").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "create node with related labels",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    	// ServiceCIDR that is just being deleted
    	deletingServiceCIDR := makeServiceCIDR("deleting-cidr", "192.168.0.0/24", "2001:db2::/64")
    	deletingServiceCIDR.Finalizers = []string{ServiceCIDRProtectionFinalizer}
    	deletingServiceCIDR.DeletionTimestamp = ptr.To[metav1.Time](metav1.Now())
    
    	// ServiceCIDR that has been deleted for longer than the deletionGracePeriod
    	deletedServiceCIDR := makeServiceCIDR("deleted-cidr", "192.168.0.0/24", "2001:db2::/64")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    		item := key.(metricLabels)
    		if deleted := KeyIDHashTotal.DeleteLabelValues(item.transformationType, item.providerName, item.keyIDHash, item.apiServerIDHash); deleted {
    			klog.InfoS("Deleted keyIDHashTotalMetricLabels", "transformationType", item.transformationType,
    				"providerName", item.providerName, "keyIDHash", item.keyIDHash, "apiServerIDHash", item.apiServerIDHash)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. cmd/local-locker_test.go

    					if len(l.lockMap) != locks {
    						t.Fatalf("objects deleted, want %d != got %d", locks, len(l.lockMap))
    					}
    					if len(l.lockUID) != locks*readers {
    						t.Fatalf("objects deleted, want %d != got %d", locks*readers, len(l.lockUID))
    					}
    
    					// Expire 50%
    					expired := time.Now().Add(-time.Hour * 2)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top