Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for genyaml (0.18 sec)

  1. hack/update-generated-docs.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::util::ensure-temp-dir
    
    BINS=(
    	./cmd/gendocs
    	./cmd/genkubedocs
    	./cmd/genman
    	./cmd/genyaml
    )
    GOPROXY=off go install "${BINS[@]}"
    
    # Run all doc generators.
    # $1 is the directory to put those generated documents
    generate_docs() {
      local dest="$1"
    
      mkdir -p "${dest}/docs/user-guide/kubectl/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				},
    			},
    			attributes: newValidAttribute(&podObject, false),
    			results: []EvaluationResult{
    				{
    					EvalResult: celtypes.True,
    				},
    			},
    			authorizer: denyAll,
    		},
    		{
    			name: "test authorizer error",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "authorizer.group('').resource('endpoints').check('create').errored()",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/model/generator_test.go

    				var gotYaml string
    				gotProto, ok := got.(proto.Message)
    				if !ok {
    					t.Fatal("failed to extract proto")
    				}
    				if gotYaml, err = protomarshal.ToYAML(gotProto); err != nil {
    					t.Fatalf("%s: failed to parse yaml: %s", tc.name, err)
    				}
    				t.Errorf("got:\n %v\n but want:\n %v", gotYaml, tc.want)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/configmap.go

    			// Apply the change.
    			if err := update(mc); err != nil {
    				return err
    			}
    
    			// Store the updated MeshConfig back into the config map.
    			newYAML, err := injectConfigToYaml(mc)
    			if err != nil {
    				return err
    			}
    			cfgMap.Data["config"] = newYAML
    
    			// Write the config map back to the cluster.
    			if err := ic.updateConfigMap(c, cfgMap); err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/builder_test.go

    		t.Fatalf("got %d configs but want %d", len(gots), len(wants))
    	}
    	for i, got := range gots {
    		gotYaml, err := protomarshal.ToYAML(got)
    		if err != nil {
    			t.Fatalf("failed to convert to YAML: %v", err)
    		}
    
    		wantFile := basePath + baseDir + wants[i]
    		util.RefreshGoldenFile(t, []byte(gotYaml), wantFile)
    		want := yamlConfig(t, wantFile, forTCP)
    		wantYaml, err := protomarshal.ToYAML(want)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. docs/fr/docs/history-design-future.md

    > Quelle est l'histoire de ce projet ? Il semble être sorti de nulle part et est devenu génial en quelques semaines [...].
    
    Voici un petit bout de cette histoire.
    
    ## Alternatives
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    				return
    			}
    
    			service.Deny()
    			if decision, _, _ := wh.Authorize(context.Background(), attr); decision == authorizer.DecisionAllow {
    				t.Errorf("%s: incorrectly authorized with DenyAll policy", tt.test)
    			}
    		}()
    	}
    }
    
    // recorderV1beta1Service records all access review requests.
    type recorderV1beta1Service struct {
    	last authorizationv1beta1.SubjectAccessReview
    	err  error
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. operator/pkg/manifest/shared.go

    	iop, err := istio.UnmarshalIstioOperator(iopsYAML, allowUnknownField)
    	if err != nil {
    		return nil, fmt.Errorf("could not unmarshal merged YAML: %s\n\nYAML:\n%s", err, iopsYAML)
    	}
    	if errs := validate.CheckIstioOperatorSpec(iop.Spec, true); len(errs) != 0 && !force {
    		l.LogAndError("Run the command with the --force flag if you want to ignore the validation error and proceed.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    				return
    			}
    
    			service.Deny()
    			if decision, _, _ := wh.Authorize(context.Background(), attr); decision == authorizer.DecisionAllow {
    				t.Errorf("%s: incorrectly authorized with DenyAll policy", tt.test)
    			}
    		}()
    	}
    }
    
    // recorderV1Service records all access review requests.
    type recorderV1Service struct {
    	last authorizationv1.SubjectAccessReview
    	err  error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-06.png" alt="illustration">
    
    Tú y esa persona 😍 se comen las hamburguesas 🍔 y la pasan genial ✨.
    
    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-07.png" alt="illustration">
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top