Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for outlier (0.13 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	if err != nil {
    		return errors.Wrapf(err, "failure while generating %s CSR and key", name)
    	}
    	if err := pkiutil.WriteKey(outdir, name, key); err != nil {
    		return errors.Wrapf(err, "failure while saving %s key", name)
    	}
    
    	if err := pkiutil.WriteCSR(outdir, name, csr); err != nil {
    		return errors.Wrapf(err, "failure while saving %s CSR", name)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/volumes.go

    type controlPlaneHostPathMounts struct {
    	// volumes is a nested map that forces a unique volumes. The outer map's
    	// keys are a string that should specify the target component to add the
    	// volume to. The values (inner map) of the outer map are maps with string
    	// keys and v1.Volume values. The inner map's key should specify the volume
    	// name.
    	volumes map[string]map[string]v1.Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/testing/sub_test.go

        sub_test.go:NNN: first this
        sub_test.go:NNN: and now this!
        sub_test.go:NNN: oh, and this too`,
    		maxPar: 1,
    		f: func(t *T) {
    			t.Errorf("first this")
    			outer := t
    			t.Run("", func(t *T) {
    				outer.Errorf("and now this!")
    			})
    			t.Errorf("oh, and this too")
    		},
    	}, {
    		desc: "subtest calls fatal on parent",
    		ok:   false,
    		output: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

            outputContains('''configure main
    configure test
    ''')
            outputContains("value = 12")
        }
    
        @Requires(UnitTestPreconditions.IsGroovy3)
        def "nested rule cannot reference method of delegate of outer closure with Groovy 3"() {
            buildFile << '''
    model {
        things {
            create('main') {
                create('test') { println "no" }
            }
        }
    }
    '''
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/riscv64/asm.go

    func findHI20Reloc(ldr *loader.Loader, s loader.Sym, val int64) *loader.Reloc {
    	outer := ldr.OuterSym(s)
    	if outer == 0 {
    		return nil
    	}
    	relocs := ldr.Relocs(outer)
    	start := sort.Search(relocs.Count(), func(i int) bool { return ldr.SymValue(outer)+int64(relocs.At(i).Off()) >= val })
    	for idx := start; idx < relocs.Count(); idx++ {
    		r := relocs.At(idx)
    		if ldr.SymValue(outer)+int64(r.Off()) != val {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.h

    TF_CAPI_EXPORT extern void TFE_DeleteContextOptions(TFE_ContextOptions*);
    
    // "Context" under which operations/functions are executed. It encapsulates
    // things like the available devices, resource manager etc.
    // TFE_Context must outlive all tensor handles created using it. In other
    // words, TFE_DeleteContext() must be called after all tensor handles have
    // been deleted (with TFE_DeleteTensorHandle).
    //
    // TODO(ashankar): Merge with TF_Session?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	outer  string // The suffix for immediately containing composite type.
    }
    
    func newComponent(suffix string, kind asmKind, typ string, offset, size int, outer string) component {
    	return component{suffix: suffix, kind: kind, typ: typ, offset: offset, size: size, outer: outer}
    }
    
    // componentsOfType generates a list of components of type t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p384.go

    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P384Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p384ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    // len(seed) is not [SeedSize]. This function is provided for interoperability
    // with RFC 8032. RFC 8032's private keys correspond to seeds in this
    // package.
    func NewKeyFromSeed(seed []byte) PrivateKey {
    	// Outline the function body so that the returned key can be stack-allocated.
    	privateKey := make([]byte, PrivateKeySize)
    	newKeyFromSeed(privateKey, seed)
    	return privateKey
    }
    
    func newKeyFromSeed(privateKey, seed []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    	}
    	cmd.Dir = telemetry.Default.LocalDir()
    
    	// The child process must write to a log file, not
    	// the stderr file it inherited from the parent, as
    	// the child may outlive the parent but should not prolong
    	// the life of any pipes created (by the grandparent)
    	// to gather the output of the parent.
    	//
    	// By default, we discard the child process's stderr,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top