Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,091 for GETs (0.08 sec)

  1. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    1 template: metadata: labels: k8s-app: istio-cni-node sidecar.istio.io/inject: "false" annotations: # This, along with the CriticalAddonsOnly toleration below, # marks the pod as a critical add-on, ensuring it gets # priority scheduling and that its resources are reserved # if it ever gets evicted. scheduler.alpha.kubernetes.io/critical-pod: '' sidecar.istio.io/inject: "false" # Add Prometheus Scrape annotations prometheus.io/scrape: 'true' prometheus.io/port: "15014" prometheus.io/path: '/metrics'...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    )
    
    // Managed groups a fieldpath.ManagedFields together with the timestamps associated with each operation.
    type Managed interface {
    	// Fields gets the fieldpath.ManagedFields.
    	Fields() fieldpath.ManagedFields
    
    	// Times gets the timestamps associated with each operation.
    	Times() map[string]*metav1.Time
    }
    
    // Manager updates the managed fields and merges applied configurations.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionRequest.java

    import org.apache.maven.settings.Server;
    
    /**
     * Collects parameters that control the decryption of settings.
     *
     */
    public interface SettingsDecryptionRequest {
    
        /**
         * Gets the servers whose passwords should be decrypted.
         *
         * @return The servers to decrypt, never {@code null}.
         */
        List<Server> getServers();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

    @Experimental
    public interface ToolchainsBuilderRequest {
        @Nonnull
        Session getSession();
    
        /**
         * Gets the global Toolchains source.
         *
         * @return the global Toolchains source or {@code null} if none
         */
        @Nonnull
        Optional<Source> getGlobalToolchainsSource();
    
        /**
         * Gets the user Toolchains source.
         *
         * @return the user Toolchains source or {@code null} if none
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. test/fixedbugs/bug440_32.go

    // run
    
    // Test for 8g register move bug.  The optimizer gets confused
    // about 16- vs 32-bit moves during splitContractIndex.
    
    // Issue 3910.
    
    package main
    
    func main() {
    	const c = 0x12345678
    	index, n, offset := splitContractIndex(c)
    	if index != int((c&0xffff)>>5) || n != int(c&(1<<5-1)) || offset != (c>>16)&(1<<14-1) {
    		println("BUG", index, n, offset)
    	}
    }
    
    func splitContractIndex(ce uint32) (index, n, offset int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 514 bytes
    - Viewed (0)
  6. releasenotes/notes/36044.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 22 19:14:54 UTC 2021
    - 168 bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

     * under the License.
     */
    package org.apache.maven.eventspy;
    
    import java.util.Map;
    
    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

        public fun KaCallableSymbol.isVisibleInClass(classSymbol: KaClassOrObjectSymbol): Boolean =
            withValidityAssertion { analysisSession.overrideInfoProvider.isVisible(this, classSymbol) }
    
        /**
         * Gets the [ImplementationStatus] of the [this] member symbol in the given [parentClassSymbol]. Or null if this symbol is not a
         * member.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Transient.java

     */
    
    package org.gradle.internal.serialization;
    
    import javax.annotation.Nullable;
    
    /**
     * A value that gets discarded during serialization.
     */
    public abstract class Transient<T> implements java.io.Serializable {
    
        /**
         * A mutable variable that gets discarded during serialization.
         */
        public static abstract class Var<T> extends Transient<T> {
            public abstract void set(T value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/tasks/DeleteTest.groovy

        }
    
        def "did work is true when something gets deleted"() {
            given:
            def file = temporaryFolder.createFile("someFile")
    
            when:
            delete.delete(file)
            execute(delete)
    
            then:
            delete.getDidWork()
            !file.exists()
        }
    
        def "did work is false when nothing gets deleted"() {
            when:
            delete.delete("does-not-exist")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top