Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,489 for nameslice (0.21 sec)

  1. src/mdo/writer.vm

                }
                serializer.endTag(NAMESPACE, dom.getName());
            }
        }
    
        private void writeTag(String tagName, String defaultValue, String value, XmlSerializer serializer) throws IOException {
            if (value != null && !Objects.equals(defaultValue, value)) {
                serializer.startTag(NAMESPACE, tagName).text(value).endTag(NAMESPACE, tagName);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. pkg/controller/controller_ref_manager_test.go

    		func() test {
    			controller := v1.ReplicationController{}
    			controller.Namespace = metav1.NamespaceDefault
    			controller.UID = types.UID(controllerUID)
    			pod1 := newPod("pod1", productionLabel, nil)
    			pod2 := newPod("pod2", productionLabel, nil)
    			pod2.Namespace = "fakens"
    			return test{
    				name: "Controller does not claim pods of different namespace",
    				manager: NewPodControllerRefManager(&FakePodControl{},
    					&controller,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen.cc

      const string namespace_begin = internal ? R"namespace(
    namespace tensorflow {
    namespace ops {
    namespace internal {
    // NOTE: This namespace has internal TensorFlow details that
    // are not part of TensorFlow's public API.
    
    )namespace"
                                              : R"namespace(
    namespace tensorflow {
    namespace ops {
    
    )namespace";
    
      const string op_header = GetPath(dot_h_fname);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

    		Setup(namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    			err := setupApps(ctx, namespace.Future(&echo1NS), &customConfig)
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    	if matchAmbient {
    		log.Infof("Namespace %s is enabled in ambient mesh", namespace)
    	} else {
    		log.Infof("Namespace %s is disabled from ambient mesh", namespace)
    	}
    	for _, pod := range s.pods.List(namespace, klabels.Everything()) {
    		// ztunnel pods are never "added to/removed from the mesh", so do not fire
    		// spurious events for them to avoid triggering extra
    		// ztunnel node reconciliation checks.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    				Spec:       policyv1.PodDisruptionBudgetSpec{Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"a": "true"}}},
    				Status:     policyv1.PodDisruptionBudgetStatus{DisruptionsAllowed: 0},
    			}},
    			eviction:    &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t1", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      # Retrieve workload summary for a specific namespace
      istioctl ztunnel-config workloads <ztunnel-name[.namespace]> --workloads-namespace foo
    `,
    		Aliases: []string{"w", "workloads"},
    		Args:    common.validateArgs,
    		RunE: runConfigDump(ctx, common, func(cw *ztunnelDump.ConfigWriter) error {
    			filter := ztunnelDump.WorkloadFilter{
    				Namespace: workloadsNamespace,
    				Address:   address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/cluster/cluster_test.go

    func TestShouldSkipPod(t *testing.T) {
    	cases := []struct {
    		name     string
    		pod      *v1.Pod
    		config   *config2.BugReportConfig
    		expected bool
    	}{
    		{
    			"tested namespace not skip",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "in-namespace1",
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Namespaces: []string{"in-"},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

    		Use:   "rootca-compare [pod/]<name-1>[.<namespace-1>] [pod/]<name-2>[.<namespace-2>]",
    		Short: "Compare ROOTCA values for the two given pods",
    		Long:  `Compare ROOTCA values for given 2 pods to check the connectivity between them.`,
    		Example: `  # Compare ROOTCA values for given 2 pods to check the connectivity between them.
      istioctl proxy-config rootca-compare <pod-name-1[.namespace]> <pod-name-2[.namespace]>`,
    		Aliases: []string{"rc"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. pkg/registry/batch/cronjob/strategy_test.go

    	ctx := genericapirequest.NewDefaultContext()
    	if !Strategy.NamespaceScoped() {
    		t.Errorf("CronJob must be namespace scoped")
    	}
    	if Strategy.AllowCreateOnUpdate() {
    		t.Errorf("CronJob should not allow create on update")
    	}
    
    	cronJob := &batch.CronJob{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:       "mycronjob",
    			Namespace:  metav1.NamespaceDefault,
    			Generation: 999,
    		},
    		Spec: batch.CronJobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top