Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for mget (0.06 sec)

  1. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    go mod tidy
    cmp go.mod.orig go.mod
    
    # Downgrading d to version 1 downgrades b, which upgrades c.
    go get example.com/d@v0.1.0
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.2.0 '
    stdout '^example.com/d v0.1.0 '
    cmp go.mod go.mod.down1
    
    # Restoring c to version 1 upgrades d to meet c's requirements.
    go get example.com/c@v0.1.0
    go list -m all
    ! stdout '^example.com/b '
    stdout '^example.com/c v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractTaskTest.groovy

            task.onlyIf(new Spec<Task>() {
                boolean isSatisfiedBy(Task element) {
                    return condition1.get()
                }
            })
    
            task.onlyIf("Condition 2 was not met", new Spec<Task>() {
                boolean isSatisfiedBy(Task element) {
                    return condition2.get()
                }
            })
    
            expect:
            task.getOnlyIf().isSatisfiedBy(task)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			deprecated = deprecation.IsDeprecated(versionedPtrWithGVK, currentMajor, currentMinor)
    			if deprecated {
    				removedRelease = deprecation.RemovedRelease(versionedPtrWithGVK)
    				warnings = append(warnings, deprecation.WarningMessage(versionedPtrWithGVK))
    			}
    		}
    
    		switch action.Verb {
    		case "GET": // Get a resource.
    			var handler restful.RouteFunction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertViolations(result, 0, 4, 0);
    
            assertTrue(result.getErrors().get(0).contains("+invalid-id"));
            assertTrue(result.getErrors().get(1).contains("-invalid-id"));
            assertTrue(result.getErrors().get(2).contains("!invalid-id"));
            assertTrue(result.getErrors().get(3).contains("?invalid-id"));
        }
    
        public void testDuplicateProfileId() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(4, executions.size());
            assertEquals("default-resources", executions.get(0).getId());
            assertEquals("default-testResources", executions.get(1).getId());
            assertEquals("test-1", executions.get(2).getId());
            assertEquals("test-2", executions.get(3).getId());
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

            // If there's a "Expect: 100-continue" header on the request, wait for a "HTTP/1.1 100
            // Continue" response before transmitting the request body. If we don't get that, return
            // what we did get (such as a 4xx response) without ever transmitting the request body.
            if ("100-continue".equals(request.header("Expect"), ignoreCase = true)) {
              exchange.flushRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. docs/features/https.md

     * `RESTRICTED_TLS` is a secure configuration, intended to meet stricter compliance requirements.
     * `MODERN_TLS` is a secure configuration that connects to modern HTTPS servers.
     * `COMPATIBLE_TLS` is a secure configuration that connects to secure–but not current–HTTPS servers.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. pkg/kubelet/container/cache.go

    func NewCache() Cache {
    	return &cache{pods: map[types.UID]*data{}, subscribers: map[types.UID][]*subRecord{}}
    }
    
    // Get returns the PodStatus for the pod; callers are expected not to
    // modify the objects returned.
    func (c *cache) Get(id types.UID) (*PodStatus, error) {
    	c.lock.RLock()
    	defer c.lock.RUnlock()
    	d := c.get(id)
    	return d.status, d.err
    }
    
    func (c *cache) GetNewerThan(id types.UID, minTime time.Time) (*PodStatus, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. prow/lib.sh

      fi
    
      # https://docs.tilt.dev/choosing_clusters.html#discovering-the-registry
      for cluster in $(kind get clusters); do
        # TODO get context/config from existing variables
        kind export kubeconfig --name="${cluster}"
        for node in $(kind get nodes --name="${cluster}"); do
          kubectl annotate node "${node}" "kind.x-k8s.io/registry=localhost:${KIND_REGISTRY_PORT}" --overwrite;
        done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    validate20RawPlugins(problems, build.getPlugins(), "build.plugins.plugin.", EMPTY, request);
    
                    PluginManagement mgmt = build.getPluginManagement();
                    if (mgmt != null) {
                        validate20RawPlugins(
                                problems, mgmt.getPlugins(), "build.pluginManagement.plugins.plugin.", EMPTY, request);
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top