Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 265 for crack (0.06 sec)

  1. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.iop.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. hack/tools/tools.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package tools is used to track binary dependencies with go modules
    // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
    package tools
    
    import (
    	// linting tools
    	_ "github.com/aojea/sloppy-netparser"
    	_ "github.com/client9/misspell/cmd/misspell"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    	if IsToolchainProgram(progPath) {
    		progVers = goVers
    	} else {
    		progVers = info.Main.Version
    		if strings.Contains(progVers, "devel") || module.IsPseudoVersion(progVers) {
    			// We don't want to track pseudo versions, but may want to track prereleases.
    			progVers = "devel"
    		}
    	}
    
    	return goVers, progPath, progVers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSystemPropertiesInstallerTest.groovy

            then:
            "userSystemValue" == System.getProperty("userSystemProp")
            "userSystemValue2" == System.getProperty("userSystemProp2")
        }
    
        def "track loaded properties"() {
            given:
            gradle.isRootBuild() >> isRootBuild
    
            when:
            systemPropertiesInstaller.setSystemPropertiesFrom(loadedGradleProperties)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ScriptSourceAwareImplementationResolver.java

        }
    
        @VisibleForTesting
        static Object unwrapBean(Object bean) {
            // When Groovy coerces a Closure into an SAM type, then it creates a Proxy which is backed by the Closure.
            // We want to track the implementation of the Closure, since the class name and classloader of the proxy will not change.
            // Java and Kotlin Lambdas are coerced to SAM types at compile time, so no unpacking is necessary there.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:27:03 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/scope.go

    // but topologymanager do not track mapping anymore
    func (s *scope) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    	s.podMap.Add(string(pod.UID), container.Name, containerID)
    }
    
    // It would be better to implement this function in topologymanager instead of scope
    // but topologymanager do not track mapping anymore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/UntrackedTask.java

     *
     * <p>There can be different reasons for declaring a task as untracked, for example:
     * <ul>
     *     <li>Some input or output locations contain unreadable files like pipes where Gradle cannot track the content.</li>
     *     <li>The input or output is stored remotely, for example in a database, and its state cannot be tracked.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 09:15:04 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/PluginApplicationTracker.java

                    track(buildOperation, pluginApplication);
                }
            }
        }
    
        private void lookupAndTrack(BuildOperationDescriptor buildOperation, long applicationId) {
            PluginApplication pluginApplication = pluginApplicationRegistry.get(applicationId);
            if (pluginApplication != null) {
                track(buildOperation, pluginApplication);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top