Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 189 for valid (0.05 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    	p.off = off
    	p.index++
    	return Question{name, typ, class}, nil
    }
    
    // AllQuestions parses all Questions.
    func (p *Parser) AllQuestions() ([]Question, error) {
    	// Multiple questions are valid according to the spec,
    	// but servers don't actually support them. There will
    	// be at most one question here.
    	//
    	// Do not pre-allocate based on info in p.header, since
    	// the data is untrusted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    func (d *dwctxt) calcCompUnitRanges() {
    	var prevUnit *sym.CompilationUnit
    	for _, s := range d.linkctxt.Textp {
    		sym := loader.Sym(s)
    
    		fi := d.ldr.FuncInfo(sym)
    		if !fi.Valid() {
    			continue
    		}
    
    		// Skip linker-created functions (ex: runtime.addmoduledata), since they
    		// don't have DWARF to begin with.
    		unit := d.ldr.SymUnit(sym)
    		if unit == nil {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Req(mediumRes).Obj(),
    			},
    			// even though node1 will fail with error but node2 will still be returned as a valid nominated node.
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(largeRes).Label("error", "true").Obj(),
    				st.MakeNode().Name("node2").Capacity(largeRes).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	for varID := range state.lists {
    		state.writePendingEntry(VarID(varID), -1, FuncEnd.ID)
    		list := state.lists[varID]
    		if state.loggingLevel > 0 {
    			if len(list) == 0 {
    				state.logf("\t%v : empty list\n", state.vars[varID])
    			} else {
    				state.logf("\t%v : %q\n", state.vars[varID], hex.EncodeToString(state.lists[varID]))
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	MOVQ	$0, savedm-8(SP)
    	get_tls(CX)
    	MOVQ	g(CX), BX
    	MOVQ	g_m(BX), BX
    
    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    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_linux.go

    	// Try fchmodat2 if flags are specified.
    	if flags != 0 {
    		err := fchmodat2(dirfd, path, mode, flags)
    		if err == ENOSYS {
    			// fchmodat2 isn't available. If the flags are known to be valid,
    			// return EOPNOTSUPP to indicate that fchmodat doesn't support them.
    			if flags&^(AT_SYMLINK_NOFOLLOW|AT_EMPTY_PATH) != 0 {
    				return EINVAL
    			} else if flags&(AT_SYMLINK_NOFOLLOW|AT_EMPTY_PATH) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    			GroupVersionKind: gvk.VirtualService,
    			Name:             "vs-1",
    			Namespace:        "default",
    		},
    		Spec: virtualServiceSpec7,
    	}
    
    	// With the config above, RDS should return a valid route for the following route names
    	// port 9000 - [bookinfo.com:9999, *.bookinfo.com:9990], [bookinfo.com:70, *.bookinfo.com:70] but no bookinfo.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // platforms test results are streamed to the specified port on
    // the specified host machine.
    GTEST_DECLARE_string_(stream_result_to);
    
    // The upper limit for valid stack trace depths.
    const int kMaxStackTraceDepth = 100;
    
    namespace internal {
    
    class AssertHelper;
    class DefaultGlobalTestPartResultReporter;
    class ExecDeathTest;
    class NoExecDeathTest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // platforms test results are streamed to the specified port on
    // the specified host machine.
    GTEST_DECLARE_string_(stream_result_to);
    
    // The upper limit for valid stack trace depths.
    const int kMaxStackTraceDepth = 100;
    
    namespace internal {
    
    class AssertHelper;
    class DefaultGlobalTestPartResultReporter;
    class ExecDeathTest;
    class NoExecDeathTest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    //   ^^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    //          rotate                          mask
    //
    // To perform this optimization we therefore just need to check that it
    // is valid to merge the shift mask (^(uint64(0)<<c)) into the selected
    // bits mask (i.e. that the resultant mask is non-zero and contiguous).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top