Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,828 for okdown (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

        /**
         * The test project name. Null if not known or not constant for all experiments
         */
        @Nullable
        String getTestProject();
    
        /**
         * The tasks executed. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getTasks();
    
        /**
         * The clean tasks executed. Null if not known or not constant for all experiments
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. .github/workflows/root-disable.yml

    name: Root lockdown tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
  3. docs/en/docs/features.md

    * <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a> for API creation, including declarations of <abbr title="also known as: endpoints, routes">path</abbr> <abbr title="also known as HTTP methods, as POST, GET, PUT, DELETE">operations</abbr>, parameters, body requests, security, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    	"containerResource": "container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/content/script.js

        }
      );
    
      injectIssues(
        "https://services.gradle.org/known-issues/@baseVersion@",
        $("h2#known-issues").next("p"),
        "known-issues",
        "Retrieving the known issue information for @baseVersion@",
        function(i) {
          if (i > 0) {
            return i + " issues are known to affect Gradle @baseVersion@.";
          } else {
            return "There are no known issues of Gradle @baseVersion@ at this time.";
          }
        }
      );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	// HasBeenReady is signaled when the readyz endpoint succeeds for the first time.
    	HasBeenReady lifecycleSignal
    
    	// MuxAndDiscoveryComplete is signaled when all known HTTP paths have been installed.
    	// It exists primarily to avoid returning a 404 response when a resource actually exists but we haven't installed the path to a handler.
    	// The actual logic is implemented by an APIServer using the generic server library.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/istio.go

    			thisVal := val[path[0]]
    			// If it is a struct and looking for more down the path
    			if thisVal.GetStructValue() != nil && len(path) > 1 {
    				return getConfigValue(path[1:], thisVal.GetStructValue().Fields)
    			}
    			retVal = thisVal
    		case 3: // match something like aaa[100]
    			thisVal := val[match[1]]
    			// If it is a list and looking for more down the path
    			if thisVal.GetListValue() != nil && len(path) > 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tools/docker-builder/main.go

    		}
    
    		// Check targets are valid
    		tgt := sets.New(a.Targets...)
    		known := sets.New[string]()
    		for _, img := range plan.Images {
    			known.Insert(img.Name)
    		}
    		if unknown := sets.SortedList(tgt.Difference(known)); len(unknown) > 0 {
    			return a, fmt.Errorf("unknown targets: %v", unknown)
    		}
    
    		// Filter down to requested targets
    		// This is not arch specific, so we can just let it run for each arch.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

      - [Highlights](#highlights)
      - [Known Issues and Important Steps before Upgrading](#known-issues-and-important-steps-before-upgrading)
          - [ThirdPartyResource](#thirdpartyresource)
          - [kubectl](#kubectl)
          - [kubernetes Core Known Issues](#kubernetes-core-known-issues)
          - [Docker runtime Known Issues](#docker-runtime-known-issues)
          - [Rkt runtime Known Issues](#rkt-runtime-known-issues)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"containerResource": "containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top