Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 355 for Anonymous2 (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    }
    
    func (s *DelegatingAuthenticationOptions) ApplyTo(authenticationInfo *server.AuthenticationInfo, servingInfo *server.SecureServingInfo, openAPIConfig *openapicommon.Config) error {
    	if s == nil {
    		authenticationInfo.Authenticator = nil
    		return nil
    	}
    
    	cfg := authenticatorfactory.DelegatingAuthenticatorConfig{
    		Anonymous:                !s.DisableAnonymous,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue29612.dir/main.go

    // run
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Do not panic on conversion to anonymous interface, which
    // is similar-looking interface types in different packages.
    
    package main
    
    import (
    	"fmt"
    
    	ssa1 "issue29612.dir/p1/ssa"
    	ssa2 "issue29612.dir/p2/ssa"
    )
    
    func main() {
    	v1 := &ssa1.T{}
    	_ = v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 14:19:25 UTC 2020
    - 845 bytes
    - Viewed (0)
  3. test/fixedbugs/issue43479.dir/b.go

    package b
    
    import "./a"
    
    var Here = a.New()
    var Dir = Here.Dir
    
    type T = struct {
    	a.Here
    	a.I
    }
    
    var X T
    
    // Test exporting the type of method values for anonymous structs with
    // promoted methods.
    var A = a.A
    var B = a.B
    var C = a.C
    var D = a.D
    var E = a.E
    var F = a.F
    var G = (*a.T).Dir
    var H = a.T.Dir
    var I = a.X.Dir
    var J = (*a.T).M
    var K = a.T.M
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 04 10:30:08 UTC 2021
    - 611 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // The algorithm is breadth-first search over the set of structs to include - the top struct
    // and then any reachable anonymous structs.
    func typeFields(t reflect.Type) []field {
    	// Anonymous fields to explore at the current level and the next.
    	current := []field{}
    	next := []field{{typ: t}}
    
    	// Count of queued names for current level and the next.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/auth/netrc_test.go

    machine ignore.host macdef ignore
      login nobody
      password nothing
    
    machine hasmacro.too macdef ignore-next-lines login user4 password pwd4
      login nobody
      password nothing
    
    default
    login anonymous
    password ******@****.***
    
    machine after.default
    login oops
    password too-late-in-file
    `
    
    func TestParseNetrc(t *testing.T) {
    	lines := parseNetrc(testNetrc)
    	want := []netrcLine{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 21:11:28 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. src/encoding/json/encode.go

    // as described in the next paragraph.
    // An anonymous struct field with a name given in its JSON tag is treated as
    // having that name, rather than being anonymous.
    // An anonymous struct field of interface type is treated the same as having
    // that type as its name, rather than being anonymous.
    //
    // The Go visibility rules for struct fields are amended for JSON when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/go/doc/testdata/c.go

    	E3 struct{}
    	// E4 (should see this)
    	E4 struct{}
    )
    
    // ----------------------------------------------------------------------------
    // Test that local and imported types are different when
    // handling anonymous fields.
    
    type T1 struct{}
    
    func (t1 *T1) M() {}
    
    // T2 must not show methods of local T1
    type T2 struct {
    	a.T1 // not the same as locally declared T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/resource_variable_grad.cc

                              std::vector<Output>* grad_outputs) {
      grad_outputs->push_back(Identity(scope, grad_inputs[0]));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("ReadVariableOp", ReadVariableOpGrad);
    
    }  // anonymous namespace
    }  // namespace ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 18:15:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/debug/panic_test.go

    	}
    	m, err := syscall.Mmap(-1, 0, 0x1000, syscall.PROT_READ /* Note: no PROT_WRITE */, syscall.MAP_SHARED|syscall.MAP_ANON)
    	if err != nil {
    		t.Fatalf("can't map anonymous memory: %s", err)
    	}
    	defer syscall.Munmap(m)
    	old := debug.SetPanicOnFault(true)
    	defer debug.SetPanicOnFault(old)
    	const lowBits = 0x3e7
    	defer func() {
    		r := recover()
    		if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/time/TimestampSuppliers.java

         * prior to the current time, or 0 if the amount of time extends beyond the epoch.
         */
        public static Supplier<Long> inThePast(int value, TimeUnit timeUnit) {
            // This needs to be an anonymous inner class instead of a lambda for configuration cache compatibility
            return new Supplier<Long>() {
                @Override
                public Long get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top