Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for ns1 (0.02 sec)

  1. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			if err != nil {
    				t.Errorf("%d: unexpected error: %v", i, err)
    				continue
    			}
    		} else if len(tc.ConfigMap) > 0 {
    			decision, _, err = authz.Authorize(context.Background(), authorizer.AttributesRecord{User: tc.User, ResourceRequest: true, Verb: "get", Resource: "configmaps", Namespace: "ns1", Name: tc.ConfigMap})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    							RouteConfiguration: &networking.EnvoyFilter_RouteConfigurationMatch{
    								PortNumber: 443,
    								PortName:   "app1",
    								Gateway:    "ns1/gw1",
    							},
    						},
    					},
    				},
    				rc: &route.RouteConfiguration{Name: "https.443.app1.gw1.ns1"},
    			},
    			want: true,
    		},
    		{
    			name: "gateway fields mismatch",
    			args: args{
    				patchContext: networking.EnvoyFilter_GATEWAY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client_test.go

    func TestClientDelayedCRDs(t *testing.T) {
    	// ns1 is allowed, ns2 is not
    	f := kubetypes.NewStaticObjectFilter(func(obj interface{}) bool {
    		// When an object is deleted, obj could be a DeletionFinalStateUnknown marker item.
    		object := controllers.ExtractObject(obj)
    		if object == nil {
    			return false
    		}
    		ns := object.GetNamespace()
    		return ns == "ns1"
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-init.go

    	cmd.PersistentFlags().StringVar(&args.common.watchedNamespaces, "watchedNamespaces", constants.IstioSystemNamespace,
    		"The namespaces the operator controller watches, could be namespace list separated by comma, eg. 'ns1,ns2'")
    	cmd.PersistentFlags().StringVarP(&args.common.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    	cmd.PersistentFlags().StringVarP(&args.common.manifestsPath, "manifests", "d", "", ManifestsFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/encoding/xml/xml_test.go

    	}
    }
    
    const testInput = `
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <body xmlns:foo="ns1" xmlns="ns2" xmlns:tag="ns3" ` +
    	"\r\n\t" + `  >
      <hello lang="en">World &lt;&gt;&apos;&quot; &#x767d;&#40300;翔</hello>
      <query>&何; &is-it;</query>
      <goodbye />
      <outer foo:attr="value" xmlns:tag="ns4">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. pkg/scheduler/util/assumecache/assume_cache_test.go

    			return nil, err
    		}
    		return []string{objAccessor.GetNamespace()}, nil
    	}
    	tCtx, cache, informer := newTestWithIndexer(t, "myNamespace", namespaceIndexer)
    
    	// Add a bunch of objects.
    	ns := "ns1"
    	objs := make([]interface{}, 0, 10)
    	for i := 0; i < 10; i++ {
    		obj := makeObj(fmt.Sprintf("test-pvc%v", i), "1", ns)
    		objs = append(objs, obj)
    		informer.add(obj)
    	}
    
    	// Add a bunch of other objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/api/persistentvolumeclaim/util_test.go

    		Namespace: namespace,
    	}
    }
    
    // TestDataSourceFilter checks to ensure the AnyVolumeDataSource feature gate and CrossNamespaceVolumeDataSource works
    func TestDataSourceFilter(t *testing.T) {
    	ns := "ns1"
    	volumeDataSource := makeDataSource(coreGroup, pvcKind, "my-vol")
    	volumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", nil)
    	xnsVolumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", &ns)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    		APIGroup:  &apiGroup,
    		Kind:      kind,
    		Name:      name,
    		Namespace: namespace,
    	}
    }
    
    func TestPrepareForCreate(t *testing.T) {
    	ctx := genericapirequest.NewDefaultContext()
    
    	ns := "ns1"
    	volumeDataSource := makeDataSource(coreGroup, pvcKind, "my-vol")
    	volumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", nil)
    	xnsVolumeDataSourceRef := makeDataSourceRef(coreGroup, pvcKind, "my-vol", &ns)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    			[]nodeWithPods{
    				{"node1", []string{"ns1/pod1"}},
    			},
    			[]string{"Warning FailedAttachVolume Multi-Attach error for volume \"volume-name\" Volume is already exclusively attached to one node and can't be attached to another"},
    		},
    		{
    			"pods in the same namespace use the volume",
    			[]nodeWithPods{
    				{"node1", []string{"ns1/pod1"}},
    				{"node2", []string{"ns1/pod2"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  10. src/net/lookup_windows_test.go

    	return
    }
    
    func nslookupNS(name string) (ns []*NS, err error) {
    	var r string
    	if r, err = nslookup("ns", name); err != nil {
    		return
    	}
    	ns = make([]*NS, 0, 10)
    	// golang.org      nameserver = ns1.google.com.
    	rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+nameserver\s*=\s*([a-z0-9.\-]+)$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		ns = append(ns, &NS{absDomainName(ans[2])})
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top