Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 314 for Empties (0.11 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasDARN  bool // Hardware random number generator (requires kernel enablement)
    	HasSCV   bool // Syscall vectored (requires kernel enablement)
    	IsPOWER8 bool // ISA v2.07 (POWER8)
    	IsPOWER9 bool // ISA v3.00 (POWER9), implies IsPOWER8
    	_        CacheLinePad
    }
    
    // S390X contains the supported CPU features of the current IBM Z
    // (s390x) platform. If the current platform is not IBM Z then all
    // feature flags are false.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    				return fmt.Sprintf(".quad 0x%x", v)
    			}
    		}
    		buf.WriteString(str)
    
    	default:
    		// Prefixed load/stores do not print the displacement register when R==1 (they are PCrel).
    		// This also implies RA should be 0.  Likewise, when R==0, printing of R can be omitted.
    		if strings.HasPrefix(opName, "pl") || strings.HasPrefix(opName, "pst") {
    			r := inst.Args[3].(Imm)
    			ra := inst.Args[2].(Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        }
    
        @Override
        public PermissionCollection getPermissions(ProtectionDomain pd) {
          return perms;
        }
    
        @Override
        public boolean implies(ProtectionDomain pd, Permission p) {
          return perms.implies(p);
        }
    
        @Override
        public void refresh() {}
      }
    
      /** Returns a policy containing all the permissions we ever need. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/modfile.go

    	if gover.IsToolchain(m.Path) {
    		if m.Path == "go" && gover.Compare(m.Version, gover.GoStrictVersion) >= 0 {
    			// Declare that go 1.21.3 requires toolchain 1.21.3,
    			// so that go get knows that downgrading toolchain implies downgrading go
    			// and similarly upgrading go requires upgrading the toolchain.
    			return &modFileSummary{module: m, require: []module.Version{{Path: "toolchain", Version: "go" + m.Version}}}, nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. src/go/scanner/scanner.go

    	s.error(offs, fmt.Sprintf(format, args...))
    }
    
    // scanComment returns the text of the comment and (if nonzero)
    // the offset of the first newline within it, which implies a
    // /*...*/ comment.
    func (s *Scanner) scanComment() (string, int) {
    	// initial '/' already consumed; s.ch == '/' || s.ch == '*'
    	offs := s.offset - 1 // position of initial '/'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    type QueueingHintFn func(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (QueueingHint, error)
    
    type QueueingHint int
    
    const (
    	// QueueSkip implies that the cluster event has no impact on
    	// scheduling of the pod.
    	QueueSkip QueueingHint = iota
    
    	// Queue implies that the Pod may be schedulable by the event.
    	Queue
    )
    
    func (s QueueingHint) String() string {
    	switch s {
    	case QueueSkip:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // and end with a noun identifying the relevant language object. For example,
    // "DuplicateDecl" or "InvalidSliceExpr". For brevity, naming follows the
    // convention that "bad" implies a problem with syntax, and "invalid" implies a
    // problem with types.
    
    const (
    	// InvalidSyntaxTree occurs if an invalid syntax tree is provided
    	// to the type checker. It should never happen.
    	InvalidSyntaxTree ErrorCode = -1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/cmd/link/elf_test.go

    {{end}}
    }
    `
    
    func TestPIESize(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// We don't want to test -linkmode=external if cgo is not supported.
    	// On some systems -buildmode=pie implies -linkmode=external, so just
    	// always skip the test if cgo is not supported.
    	testenv.MustHaveCGO(t)
    
    	if !platform.BuildModeSupported(runtime.Compiler, "pie", runtime.GOOS, runtime.GOARCH) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_server_journal.go

    		if err == nil {
    			break
    		} else if errors.Is(err, os.ErrNotExist) {
    			continue
    		} else {
    			break
    		}
    	}
    
    	if err != nil {
    		// If the last error was file not found it implies that no log file was found for the service
    		if errors.Is(err, os.ErrNotExist) {
    			fmt.Fprintf(w, "\nlog not found for %s\n", service)
    			return
    		}
    		fmt.Fprintf(w, "\nerror getting log for %s: %v\n", service, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/main.go

    	}
    
    	checkStrictDups = *FlagStrictDups
    
    	switch flagW {
    	case ternaryFlagFalse:
    		*FlagW = false
    	case ternaryFlagTrue:
    		*FlagW = true
    	case ternaryFlagUnset:
    		*FlagW = *FlagS // -s implies -w if not explicitly set
    		if ctxt.IsDarwin() && ctxt.BuildMode == BuildModeCShared {
    			*FlagW = true // default to -w in c-shared mode on darwin, see #61229
    		}
    	}
    
    	if !buildcfg.Experiment.RegabiWrappers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top