Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for tmp_ (0.08 sec)

  1. src/crypto/x509/verify_test.go

    	}
    	tmpl := &Certificate{
    		SerialNumber: serial,
    		Subject:      pkix.Name{CommonName: subject},
    		NotBefore:    time.Now().Add(-time.Hour),
    		NotAfter:     time.Now().Add(time.Hour),
    	}
    	if certType == rootCertificate || certType == intermediateCertificate {
    		tmpl.IsCA, tmpl.BasicConstraintsValid = true, true
    		tmpl.KeyUsage = KeyUsageCertSign
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    			t.RunTraffic(TrafficTestCase{
    				name:   "source ip " + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "useSourceIp: true"),
    				call:   c.CallOrFail,
    				opts:   callOpts,
    			})
    			t.RunTraffic(TrafficTestCase{
    				name:   "query param" + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "httpQueryParameterName: some-query-param"),
    				call:   c.CallOrFail,
    				opts:   callOpts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Restrict this optimization to the stack, to avoid duplicating loads from the heap;
    // see CL 145208 for discussion.
    (Move {t1} [s] dst tmp1 midmem:(Move {t2} [s] tmp2 src _))
    	&& t1.Compare(t2) == types.CMPeq
    	&& isSamePtr(tmp1, tmp2)
    	&& isStackPtr(src) && !isVolatile(src)
    	&& disjoint(src, s, tmp2, s)
    	&& (disjoint(src, s, dst, s) || isInlinableMemmove(dst, src, s, config))
    	=> (Move {t1} [s] dst src midmem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpl := &Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: ":)",
    		},
    		NotAfter:  time.Now().Add(time.Hour),
    		NotBefore: time.Now().Add(-time.Hour),
    	}
    	der, err := CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // Using == on two Values does not compare the underlying values
    // they represent.
    type Value struct {
    	// typ_ holds the type of the value represented by a Value.
    	// Access using the typ method to avoid escape of v.
    	typ_ *abi.Type
    
    	// Pointer-valued data or, if flagIndir is set, pointer to data.
    	// Valid when either flagIndir is set or typ.pointers() is true.
    	ptr unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// is failing with:
    	//   Unable to remove existing file: Invalid argument
    	tmp := os.DevNull
    	if runtime.GOOS == "windows" || runtime.GOOS == "ios" {
    		f, err := os.CreateTemp(b.WorkDir, "")
    		if err != nil {
    			return false
    		}
    		f.Close()
    		tmp = f.Name()
    		defer os.Remove(tmp)
    	}
    
    	cmdArgs := str.StringList(compiler, flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	fetchKeysFromRemote bool
    }
    
    // Replace formats the contents of v into the provided template.
    func replace(tmpl string, v interface{}) string {
    	t := template.Must(template.New("test").Parse(tmpl))
    	buf := bytes.NewBuffer(nil)
    	t.Execute(buf, &v)
    	ret := buf.String()
    	klog.V(4).Infof("Replaced: %v into: %v", tmpl, ret)
    	return ret
    }
    
    // newClaimServer returns a new test HTTPS server, which is rigged to return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    // template "selected" by TemplateSel<Tmpl>.
    //
    // This trick is necessary for simulating typedef for class templates,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    // template "selected" by TemplateSel<Tmpl>.
    //
    // This trick is necessary for simulating typedef for class templates,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	testMainKubelet, err := NewMainKubelet(
    		kubeCfg,
    		kubeDep,
    		crOptions,
    		"hostname",
    		false,
    		"hostname",
    		[]net.IP{},
    		"",
    		"external",
    		"/tmp/cert",
    		"/tmp/rootdir",
    		tempDir,
    		"",
    		"",
    		false,
    		[]v1.Taint{},
    		[]string{},
    		"",
    		false,
    		false,
    		metav1.Duration{Duration: time.Minute},
    		1024,
    		110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top