Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,868 for revoked (0.21 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalTask/groovy/build.gradle

        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register('removeInput', Delete) {
        delete 'inputs/3.txt'
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    tasks.register('removeOutput', Delete) {
        delete layout.buildDirectory.file("outputs/1.txt")
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register('incrementalReverse', IncrementalReverseTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options.go

    	ShowHiddenMetricsForVersion string
    
    	SystemNamespaces []string
    }
    
    // completedServerRunOptions is a private wrapper that enforces a call of Complete() before Run can be invoked.
    type completedOptions struct {
    	Options
    }
    
    type CompletedOptions struct {
    	// Embed a private pointer that cannot be instantiated outside of this package.
    	*completedOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. bin/diff_yaml.py

        added, removed, common = keydiff(q0.keys(), q1.keys())
    
        changed = 0
        for k in sorted(common):
            if q0[k] != q1[k]:
                changed += 1
    
        print("## +++ ", args.new)
        print("## --- ", args.orig)
        print("## Added:", len(added))
        print("## Removed:", len(removed))
        print("## Updated:", changed)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 03 16:14:57 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/workload.go

    	} else {
    		// For wildcard, we record all resources that have been pushed and not removed
    		// It was to correctly calculate removed resources during full push alongside with specific address removed.
    		w.ResourceNames = subs.Merge(have).Difference(removed).UnsortedList()
    	}
    	return resources, removed.UnsortedList(), model.XdsLogDetails{}, true, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/WebSocketListener.kt

      }
    
      /** Invoked when a binary (type `0x2`) message has been received. */
      open fun onMessage(
        webSocket: WebSocket,
        bytes: ByteString,
      ) {
      }
    
      /**
       * Invoked when the remote peer has indicated that no more incoming messages will be transmitted.
       */
      open fun onClosing(
        webSocket: WebSocket,
        code: Int,
        reason: String,
      ) {
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    			status, exists := podWorkers.podSyncStatuses[podUID]
    			if tc.removed && exists {
    				t.Fatalf("Expected pod worker to be removed")
    			}
    			if !tc.removed && !exists {
    				t.Fatalf("Expected pod worker to not be removed")
    			}
    			if tc.removed {
    				return
    			}
    			if tc.expectGracePeriod > 0 && status.gracePeriod != tc.expectGracePeriod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultIncrementalCompilation.java

            this.removed = removed;
            this.existingHeaders = existingHeaders;
            this.macroIncludesUsedInSources = macroIncludesUsedInSources;
        }
    
        @Override
        public List<File> getRecompile() {
            return recompile;
        }
    
        @Override
        public List<File> getRemoved() {
            return removed;
        }
    
        @Override
        public CompilationState getFinalState() {
            return finalState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

         * <p>The given provider will be queried when the value of this property is queried.
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
         * the actual value of this property is guaranteed to be present.</p>
         *
         * @param key the key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	"k8s.io/kubernetes/pkg/kubelet/util/queue"
    	"k8s.io/utils/clock"
    )
    
    // OnCompleteFunc is a function that is invoked when an operation completes.
    // If err is non-nil, the operation did not complete successfully.
    type OnCompleteFunc func(err error)
    
    // PodStatusFunc is a function that is invoked to override the pod status when a pod is killed.
    type PodStatusFunc func(podStatus *v1.PodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register<Delete>("removeInput") {
        delete("inputs/3.txt")
    }
    // end::removed-input[]
    
    // tag::removed-output[]
    tasks.register<Delete>("removeOutput") {
        delete(layout.buildDirectory.file("outputs/1.txt"))
    }
    // end::removed-output[]
    
    // tag::reverse[]
    tasks.register<IncrementalReverseTask>("incrementalReverse") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top