Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for myns (0.04 sec)

  1. pkg/serviceaccount/claims_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mysvcacct",
    			UID:       "mysvcacct-uid",
    		},
    	}
    	pod := &core.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mypod",
    			UID:       "mypod-uid",
    		},
    	}
    	sec := &core.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mysecret",
    			UID:       "mysecret-uid",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization_test.go

    			},
    		},
    		"namespaced resource": {
    			Verb: "PUT",
    			Path: "/api/v1/namespaces/myns/pods/mypod",
    			ExpectedAttributes: &authorizer.AttributesRecord{
    				Verb:            "update",
    				Path:            "/api/v1/namespaces/myns/pods/mypod",
    				ResourceRequest: true,
    				Namespace:       "myns",
    				Resource:        "pods",
    				APIVersion:      "v1",
    				Name:            "mypod",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

      "kind": "Foo",
      "metadata": {
        "name": "instance",
        "namespace": "myns",
        "labels":{"foo":"bar"},
        "unspecified": "bar"
      },
      "unspecified":"bar",
      "pruned": {
        "apiVersion": "foo/v1",
        "kind": "Foo",
        "unspecified": "bar",
        "metadata": {
          "name": "instance",
          "namespace": "myns",
          "labels":{"foo":"bar"},
          "unspecified": "bar"
        },
        "spec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. plugin/pkg/admission/serviceaccount/admission_test.go

    		}
    	}
    }
    
    func TestIgnoresNonPodResource(t *testing.T) {
    	pod := &api.Pod{}
    	attrs := admission.NewAttributesRecord(pod, nil, api.Kind("Pod").WithVersion("version"), "myns", "myname", api.Resource("CustomResource").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil)
    	handler := admissiontesting.WithReinvocationTesting(t, NewServiceAccount())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/index_test.go

    	fs := v1.PersistentVolumeFilesystem
    	pvc := v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "claim01",
    			Namespace: "myns",
    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    			AccessModes: []v1.PersistentVolumeAccessMode{v1.ReadOnlyMany, v1.ReadWriteOnce},
    			Resources: v1.VolumeResourceRequirements{
    				Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  6. pkg/config/mesh/mesh_test.go

    	}
    	assert.Equal(t, got, want)
    	// Verify overrides
    	got, err = mesh.ApplyMeshConfigDefaults(`
    serviceSettings: 
      - settings:
          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "",
    		},
    		{
    			name:       "allow update of unrelated object",
    			podsGetter: existingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/DaemonHealthStatsTest.groovy

            gcMonitor.getNonHeapStats() >> new GarbageCollectionStats(0, 1024, 2048, 5)
            runningStats.getPrettyUpTime() >> "3 mins"
            runningStats.getAllBuildsTime() >> 1000
    
            then:
            healthStats.healthInfo == "[uptime: 3 mins, performance: 98%, GC rate: 1.00/s, heap usage: 10% of 1 KiB, non-heap usage: 50% of 2 KiB]"
        }
    
        def "handles no garbage collection data"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

      SmallVector<double, 4> min_value, max_value;
      const auto mins = dyn_cast<DenseFPElementsAttr>(min);
      const auto maxs = dyn_cast<DenseFPElementsAttr>(max);
      if (mins && maxs) {
        min_value.reserve(mins.getNumElements());
        max_value.reserve(maxs.getNumElements());
        for (auto it = mins.begin(); it != mins.end(); ++it) {
          min_value.push_back(FloatAttr::getValueAsDouble(*it));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/DefaultTimerTest.groovy

            then:
            timer.getElapsed() == "32 mins 40.322 secs"
        }
    
        def testHoursMinutesAndSeconds() {
            when:
            setTime(3, 2, 5, 111)
    
            then:
            timer.getElapsed() == "3 hrs 2 mins 5.111 secs"
        }
    
        def testHoursZeroMinutes() {
            when:
            setTime(1, 0, 32, 0)
    
            then:
            timer.getElapsed() == "1 hrs 0 mins 32.0 secs"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top