Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for room (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    			// done by the kernel in the same way as for root
    			// (see generic_permission() in the Linux sources).
    			uid = 0
    		}
    	} else {
    		uid = Getuid()
    	}
    
    	if uid == 0 {
    		if mode&1 == 0 {
    			// Root can read and write any file.
    			return nil
    		}
    		if st.Mode&0111 != 0 {
    			// Root can execute any file that anybody can execute.
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

          navigates directly to section anchors.
         */
    	#content h2[id],
    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		padding-top: 60px;
    	}
    
    	#content h2[id] {
    		/* Little extra room above h2s */
    		margin-top: -1em;
    	}
    
    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		margin-top: -60px;
    	}
    
    	.site-header__navigation {
    		flex-direction: row;
    	}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    			t.Fatalf("profile did not contain nanoseconds sample")
    		}
    		total := int64(0)
    		for _, s := range p.Sample {
    			total += s.Value[i]
    		}
    		// Want d to be at least N*D, but give some wiggle-room to avoid
    		// a test flaking. Set an upper-bound proportional to the total
    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    			// To ensure we get all updates, including unexpected ones, we need to wait at least as long as
    			// a single cache sync period and worker period, with some fudge room.
    			time.Sleep(150 * time.Millisecond)
    			if test.shouldUpdateEndpoints {
    				// Ensure the work queue has been processed by looping for up to a second to prevent flakes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	MOVQ	DX, SP
    	RET
    
    // asmcgocall_landingpad calls AX with BX as argument.
    // Must be called on the system stack.
    TEXT ·asmcgocall_landingpad(SB),NOSPLIT,$0-0
    #ifdef GOOS_windows
    	// Make sure we have enough room for 4 stack-backed fast-call
    	// registers as per Windows amd64 calling convention.
    	ADJSP	$32
    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		entry, e := direntLeToDirentUnix(&entryLE, d, path)
    		if e != nil {
    			return n, e
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	}
    	l.nhashedsyms = len(st.hashed64Syms) + len(st.hashedSyms)
    	for _, r := range l.objs[goObjStart:] {
    		loadObjRefs(l, r, arch)
    	}
    	l.values = make([]int64, l.NSym(), l.NSym()+1000) // +1000 make some room for external symbols
    	l.outer = make([]Sym, l.NSym(), l.NSym()+1000)
    }
    
    func loadObjRefs(l *Loader, r *oReader, arch *sys.Arch) {
    	// load non-package refs
    	ndef := uint32(r.NAlldef())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis_test.cc

    TEST(DeadnessAnalysisTest, OrIsAssociative) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      ops::Switch sw_0 = CreateSwitch(root, "0");
      ops::Switch sw_1 = CreateSwitch(root, "1");
      ops::Switch sw_2 = CreateSwitch(root, "2");
    
      ops::Merge m0(root.WithOpName("m0"), {sw_0.output_false, sw_1.output_false});
      ops::Merge m1(root.WithOpName("m1"), {m0.output, sw_2.output_false});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    TEST(XlaCompilationTest, ChainOfOps) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Node* write_0 = MakeWrite(root, "W0");
      Node* neutral_0 = MakeNeutral(root, "N0");
      Node* read_0 = MakeRead(root, "R0");
      Node* write_1 = MakeWrite(root, "W1");
      Node* neutral_1 = MakeNeutral(root, "N1");
      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    			*m = map[string]string{"test": "fuzz"}
    		})
    
    	root := &networking.HTTPMatchRequest{}
    	f.Fuzz(root)
    	root.SourceNamespace = ""
    	root.SourceLabels = nil
    	root.Gateways = nil
    	root.IgnoreUriCase = false
    	delegate := &networking.HTTPMatchRequest{}
    	merged := mergeHTTPMatchRequest(root, delegate)
    
    	assert.Equal(t, merged, root)
    }
    
    var gatewayNameTests = []struct {
    	gateway   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top