Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 218 for oris (0.03 sec)

  1. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    	}
    }
    
    func patch(c kube.Client, orig config.Config, origMeta metav1.ObjectMeta, mod config.Config, modMeta metav1.ObjectMeta, typ types.PatchType) (metav1.Object, error) {
    	if orig.GroupVersionKind != mod.GroupVersionKind {
    		return nil, fmt.Errorf("gvk mismatch: %v, modified: %v", orig.GroupVersionKind, mod.GroupVersionKind)
    	}
    	switch orig.GroupVersionKind {
    {{- range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    # go list -deps -e -f $fmt .
    # stdout '^rsc.io/quote: ok$'
    # ! stdout rsc.io/sampler  # not imported by quote in this version
    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    go mod tidy
    cmp go.mod.orig go.mod
    cmp go.sum.orig go.sum
    
    
    # Upgrade a module. This also upgrades rsc.io/quote, and though we didn't load
    # a package from it, we had the sum for its old version, so we need the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/testing/SerializableTesterTest.java

        assertNotSame(original, copy);
      }
    
      public void testClassWhichDoesNotImplementEquals() {
        ClassWhichDoesNotImplementEquals orig = new ClassWhichDoesNotImplementEquals();
        boolean errorNotThrown = false;
        try {
          SerializableTester.reserializeAndAssert(orig);
          errorNotThrown = true;
        } catch (AssertionFailedError error) {
          // expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/SerializableTesterTest.java

        assertNotSame(original, copy);
      }
    
      public void testClassWhichDoesNotImplementEquals() {
        ClassWhichDoesNotImplementEquals orig = new ClassWhichDoesNotImplementEquals();
        boolean errorNotThrown = false;
        try {
          SerializableTester.reserializeAndAssert(orig);
          errorNotThrown = true;
        } catch (AssertionFailedError error) {
          // expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-simple-policy-td-aliases-out.yaml

                    - header:
                        name: :method
                        stringMatch:
                          exact: rule[0]-to[0]-method[0]
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://td1/ns/rule[0]/sa/from[0]-principal[0]
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    env proxy=$GOPROXY
    env GOPROXY GONOPROXY GOSUMDB GONOSUMDB
    
    # basic fetch (through proxy) works
    cp go.mod.orig go.mod
    go get rsc.io/fortune@v1.0.0 # note: must use test proxy, does not exist in real world
    rm $GOPATH/pkg/mod/cache/download/sumdb # rm sumdb cache but NOT package download cache
    rm go.sum
    
    # can fetch by explicit URL
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-direct
    go get rsc.io/fortune@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. test/fixedbugs/issue46304.go

    	if op == nil {
    		return nil
    	}
    
    	orig := op
    	cloned := false
    	clone := func() {
    		if !cloned {
    			cloned = true
    			op = &Op{}
    			*op = *orig
    		}
    	}
    
    	pCloned := false
    	for i := range op.plist {
    		if s := w.walkP(&op.plist[i]); s != &op.plist[i] {
    			if !pCloned {
    				pCloned = true
    				clone()
    				op.plist = make([]P, len(orig.plist))
    				copy(op.plist, orig.plist)
    			}
    			op.plist[i] = *s
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 22 00:51:17 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    cmp go.mod.orig go.mod
    
    # get -u=patch, with no arguments, should patch-update all dependencies
    # of the package in the current directory, pulling in transitive dependencies
    # and also patching those.
    cp go.mod.orig go.mod
    go get -u=patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_use_dot.txt

    cp go.work go.work.orig
    
    # If the current directory contains a go.mod file,
    # 'go work use .' should add an entry for it.
    cd bar/baz
    go work use .
    cmp ../../go.work ../../go.work.rel
    
    # If the current directory lacks a go.mod file, 'go work use .'
    # should remove its entry.
    mv go.mod go.mod.bak
    go work use .
    cmp ../../go.work ../../go.work.orig
    
    # If the path is absolute, it should remain absolute.
    mv go.mod.bak go.mod
    go work use $PWD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_replace.txt

    env GO111MODULE=on
    [short] skip
    
    cp go.mod go.mod.orig
    
    # Make sure the test builds without replacement.
    go build -mod=mod -o a1.exe .
    exec ./a1.exe
    stdout 'Don''t communicate by sharing memory'
    
    # Modules can be replaced by local packages.
    cp go.mod.orig go.mod
    go mod edit -replace=rsc.io/quote/v3=./local/rsc.io/quote/v3
    go build -o a2.exe .
    exec ./a2.exe
    stdout 'Concurrency is not parallelism.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top