Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 268 for crack (0.04 sec)

  1. src/debug/gosym/pclntab_test.go

    		// OK.
    	default:
    		t.Skipf("skipping on non-ELF system %s", runtime.GOOS)
    	}
    }
    
    func getTable(t *testing.T) *Table {
    	f, tab := crack(os.Args[0], t)
    	f.Close()
    	return tab
    }
    
    func crack(file string, t *testing.T) (*elf.File, *Table) {
    	// Open self
    	f, err := elf.Open(file)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return parse(file, f, t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. pkg/controller/job/tracking_utils_test.go

    		} else if diff := cmp.Diff(track.firstRound, sets.List(uids.set)); diff != "" {
    			t.Errorf("Unexpected keys for job %s (-want,+got):\n%s", track.job, diff)
    		}
    	}
    
    	// Delete the first round of keys and add the second round in parallel.
    
    	for i, track := range tracks {
    		wg.Add(len(track.firstRound) + 1)
    		track := track
    		for _, uid := range track.firstRound {
    			uid := uid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 05:40:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. pkg/revisions/tag_watcher_test.go

    	stop := test.NewStop(t)
    	c.RunAndWait(stop)
    	track := assert.NewTracker[string](t)
    	tw.AddHandler(func(s sets.String) {
    		track.Record(strings.Join(sets.SortedList(s), ","))
    	})
    	go tw.Run(stop)
    	kube.WaitForCacheSync("test", stop, tw.HasSynced)
    	track.WaitOrdered("revision")
    	assert.Equal(t, tw.GetMyTags(), sets.New("revision"))
    
    	whs.Create(makeTag("revision", "tag-foo"))
    	track.WaitOrdered("revision,tag-foo")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessor.java

        public Set<String> getSupportedOptions() {
            return track(new Factory<Set<String>>() {
                @Override
                public Set<String> create() {
                    return TimeTrackingProcessor.super.getSupportedOptions();
                }
            });
        }
    
        @Override
        public Set<String> getSupportedAnnotationTypes() {
            return track(new Factory<Set<String>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration_test.go

    			t.Error("expected values to be initialized to 0")
    		}
    
    		for _, d := range tc.Durations {
    			wd.MutatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.ValidatingWebhookTracker.Track(func() { clk.Step(d) })
    			wd.APFQueueWaitTracker.Track(func() { clk.Step(d) })
    		}
    
    		wd, ok = LatencyTrackersFrom(ctx)
    		if !ok {
    			t.Errorf("expected webhook duration to be initialized")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:15:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-tracing-disabled.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels: 
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 461 bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 460 bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml

      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          annotations:
            proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 556 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-openshift.yaml

    kind: Deployment
    metadata:
      name: hello
      namespace: test-ns
    spec:
      replicas: 7
      selector:
        matchLabels: 
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 21:30:10 UTC 2024
    - 482 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 956 bytes
    - Viewed (0)
Back to top