Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for naked (0.06 sec)

  1. cmd/kubelet/app/server.go

    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    // For example, if the drop-in directory contains files named "10-config.conf" and "20-config.conf",
    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    			f.dynLibraries[ldr.SymDynimplib(s)] = len(f.dynLibraries)
    		}
    	}
    }
    
    // (*xcoffFile)adddynimpsym adds the dynamic symbol "s" to a XCOFF file.
    // A new symbol named s.Extname() is created to be the actual dynamic symbol
    // in the .loader section and in the symbol table as an External Reference.
    // The symbol "s" is transformed to SXCOFFTOC to end up in .data section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    typedef struct TF_Filesystem {
      void* plugin_filesystem;
    } TF_Filesystem;
    
    typedef struct TF_TransactionToken {
      void* token;
      TF_Filesystem* owner;
    } TF_TransactionToken;
    
    // The named union is needed here (as opposed to
    // inside the `TF_Filesystem_Option_Value` struct)
    // as MSVC does not recognize `typeof`.
    typedef union TF_Filesystem_Option_Value_Union {
      int64_t int_val;
      double real_val;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    // first [Conn.Read] or [Conn.Write] will call it automatically.
    func (c *Conn) HandshakeContext(ctx context.Context) error {
    	// Delegate to unexported method for named return
    	// without confusing documented signature.
    	return c.handshakeContext(ctx)
    }
    
    func (c *Conn) handshakeContext(ctx context.Context) (ret error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    			return str
    		}
    	}
    	return "signal " + itoa.Itoa(int(s))
    }
    
    func LoadCreateSymbolicLink() error {
    	return procCreateSymbolicLinkW.Find()
    }
    
    // Readlink returns the destination of the named symbolic link.
    func Readlink(path string, buf []byte) (n int, err error) {
    	fd, err := CreateFile(StringToUTF16Ptr(path), GENERIC_READ, 0, nil, OPEN_EXISTING,
    		FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    			setEgressToNamespaceSelector,
    			setEgressPorts(
    				makePort(&protocolUDP, intstr.FromInt32(35000), 32768),
    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    		),
    		"endPort defined with named/string port": makeNetworkPolicyCustom(
    			setEgressToNamespaceSelector,
    			setEgressPorts(
    				makePort(&protocolUDP, intstr.FromString("dns"), 32768),
    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	fld := make([]*ast.Field, 0, 2*len(dt.Field)+1) // enough for padding around every field
    	sizes := make([]int64, 0, 2*len(dt.Field)+1)
    	off := int64(0)
    
    	// Rename struct fields that happen to be named Go keywords into
    	// _{keyword}.  Create a map from C ident -> Go ident. The Go ident will
    	// be mangled. Any existing identifier that already has the same name on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"message": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Given a parameterized test method named `aTestMethod` that takes two parameters, it will be reported with the name `aTestMethod(toStringValueOfParam1, toStringValueOfParam2)`. This makes it easy to identify the parameter values for a particular iteration.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. cmd/iam.go

    	if !sys.Initialized() {
    		return nil, errServerNotInitialized
    	}
    
    	return sys.store.ListPolicyDocs(ctx, bucketName)
    }
    
    // SetPolicy - sets a new named policy.
    func (sys *IAMSys) SetPolicy(ctx context.Context, policyName string, p policy.Policy) (time.Time, error) {
    	if !sys.Initialized() {
    		return time.Time{}, errServerNotInitialized
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top