Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for Characteristics (0.37 sec)

  1. src/cmd/internal/objfile/pe.go

    			}
    			sect := f.pe.Sections[s.SectionNumber-1]
    			const (
    				text  = 0x20
    				data  = 0x40
    				bss   = 0x80
    				permW = 0x80000000
    			)
    			ch := sect.Characteristics
    			switch {
    			case ch&text != 0:
    				sym.Code = 'T'
    			case ch&data != 0:
    				if ch&permW == 0 {
    					sym.Code = 'R'
    				} else {
    					sym.Code = 'D'
    				}
    			case ch&bss != 0:
    				sym.Code = 'B'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. src/syscall/types_freebsd.go

    	u_short ifm_msglen;
    	u_char  ifm_version;
    	u_char  ifm_type;
    	int     ifm_addrs;
    	int     ifm_flags;
    	u_short ifm_index;
    	struct  if_data8 ifm_data;
    };
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. docs/contribute/code_of_conduct.md

    gender identity or expression, language, national origin, political beliefs, profession, race,
    religion, sexual orientation, socioeconomic status, and technical ability. We will not tolerate
    discrimination based on any of the protected characteristics above, including participants with
    disabilities.
    
    Reporting Issues
    ----------------
    
    If you experience or witness unacceptable behavior — or have any other concerns — please report it by
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      builder.create<mlir::func::ReturnOp>(func_.getLoc(), op.getResults());
    }
    
    LogicalResult ConvertNMSPaddedFunc::VerifySignature() {
      // Verify high-level function signature.
      // Relevant argument characteristics are checked by the TFL op definition.
      if (func_.getNumArguments() < 5) {
        return func_.emitWarning()
               << "Invalid number of arguments to "
                  "non_max_suppression_padded_v2 (need at least 5): "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/webhook/client.go

    		cfg.ContentConfig.ContentType = runtime.ContentTypeJSON
    
    		// Add a transport wrapper that allows detection of TLS connections to
    		// servers with serving certificates with deprecated characteristics
    		cfg.Wrap(x509metrics.NewDeprecatedCertificateRoundTripperWrapperConstructor(
    			x509MissingSANCounter,
    			x509InsecureSHA1Counter,
    		))
    		return cfg, nil
    	}
    
    	if cc.Service != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/debug/pe/file.go

    			PointerToRelocations: sh.PointerToRelocations,
    			PointerToLineNumbers: sh.PointerToLineNumbers,
    			NumberOfRelocations:  sh.NumberOfRelocations,
    			NumberOfLineNumbers:  sh.NumberOfLineNumbers,
    			Characteristics:      sh.Characteristics,
    		}
    		r2 := r
    		if sh.PointerToRawData == 0 { // .bss must have all 0s
    			r2 = &nobitsSectionReader{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arm.go

    // Copyright 2015 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.
    
    // This file encapsulates some of the odd characteristics of the ARM
    // instruction set, to minimize its interaction with the core of the
    // assembler.
    
    package arch
    
    import (
    	"strings"
    
    	"cmd/internal/obj"
    	"cmd/internal/obj/arm"
    )
    
    var armLS = map[string]uint8{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. src/syscall/types_linux.go

    // backwards compatibility. Copied from /usr/include/bits/ustat.h
    struct ustat {
    	__daddr_t f_tfree;
    	__ino_t f_tinode;
    	char f_fname[6];
    	char f_fpack[6];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                  type: string
                spec:
                  description: 'spec defines the desired characteristics of a snapshot requested
                  by a user. More info: https://kubernetes.io/docs/concepts/storage/volume-snapshots#volumesnapshots
                  Required.'
                  properties:
                    source:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  10. pkg/credentialprovider/keyring.go

    	defaultRegistryKey  = defaultRegistryHost + "/v1/"
    )
    
    // isDefaultRegistryMatch determines whether the given image will
    // pull from the default registry (DockerHub) based on the
    // characteristics of its name.
    func isDefaultRegistryMatch(image string) bool {
    	parts := strings.SplitN(image, "/", 2)
    
    	if len(parts[0]) == 0 {
    		return false
    	}
    
    	if len(parts) == 1 {
    		// e.g. library/ubuntu
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top