Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for stsr (0.04 sec)

  1. docs/en/docs/help-fastapi.md

    ## Star **FastAPI** in GitHub
    
    You can "star" FastAPI in GitHub (clicking the star button at the top right): <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">https://github.com/tiangolo/fastapi</a>. ⭐️
    
    By adding a star, other users will be able to find it more easily and see that it has been already useful for others.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

    import com.gradle.develocity.agent.gradle.scan.BuildScanConfiguration
    import org.gradle.api.Project
    import org.gradle.api.Task
    import org.gradle.api.provider.Provider
    import org.gradle.build.event.BuildEventsListenerRegistry
    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.serviceOf
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    		old.stackguard1 = gp.m.gsignal.stackguard1
    		old.stktopsp = gp.m.gsignal.stktopsp
    	}
    	stsp := uintptr(unsafe.Pointer(st.ss_sp))
    	gp.m.gsignal.stack.lo = stsp
    	gp.m.gsignal.stack.hi = stsp + st.ss_size
    	gp.m.gsignal.stackguard0 = stsp + stackGuard
    	gp.m.gsignal.stackguard1 = stsp + stackGuard
    }
    
    // restoreGsignalStack restores the gsignal stack to the value it had
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    /* Clever use of RTL to fill in all stars to left of hover position */
    .rating {
        direction: rtl;
    }
    .rating > .star {
        cursor: pointer;
        padding: 3px;
    }
    .rating > .star:hover > svg > g,
    .rating > .star:hover ~ .star > svg > g,
    .rating > .star.selected > svg > g,
    .rating > .star.selected ~ .star > svg > g {
        fill: #999;
    }
    
    /* Footer styles */
    .site-footer {
    }
    
    .site-footer__navigation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	if _, ok := x.(*ast.CompositeLit); ok {
    		return nil
    	}
    	if _, ok := x.(*ast.CallExpr); ok {
    		// A call may return a zero value.
    		return nil
    	}
    	if star, ok := x.(*ast.StarExpr); ok {
    		if _, ok := astutil.Unparen(star.X).(*ast.CallExpr); ok {
    			// A call may return a pointer to a zero value.
    			return nil
    		}
    	}
    	if tv, ok := pass.TypesInfo.Types[x]; ok && tv.IsValue() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	} else if st.str[0] == 's' && len(st.str) > 1 && st.str[1] == 'P' {
    		st.advance(2)
    		var args []AST
    		for len(st.str) == 0 || st.str[0] != 'E' {
    			arg := st.templateArg(nil)
    			args = append(args, arg)
    		}
    		st.advance(1)
    		return &SizeofArgs{Args: args}
    	} else if st.str[0] == 'f' && len(st.str) > 1 && st.str[1] == 'p' {
    		st.advance(2)
    		if len(st.str) > 0 && st.str[0] == 'T' {
    			st.advance(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/slices/iter_test.go

    	s := Collect(testSeq)
    	want := testSeqResult
    	if !Equal(s, want) {
    		t.Errorf("got %v, want %v", s, want)
    	}
    }
    
    var iterTests = [][]string{
    	nil,
    	{"a"},
    	{"a", "b"},
    	{"b", "a"},
    	strs[:],
    }
    
    func TestValuesAppendSeq(t *testing.T) {
    	for _, prefix := range iterTests {
    		for _, s := range iterTests {
    			got := AppendSeq(prefix, Values(s))
    			want := append(prefix, s...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

              TF::Conv2DOp::getOperationName().str(),
              TF::DepthwiseConv2dNativeOp::getOperationName().str(),
              TF::FusedBatchNormV3Op::getOperationName().str(),
              TF::GatherV2Op::getOperationName().str(),
              TF::MatMulOp::getOperationName().str(),
              TF::MaxPoolOp::getOperationName().str(),
              TF::MaximumOp::getOperationName().str(),
              TF::MeanOp::getOperationName().str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	for _, call := range f.Calls {
    		if call.Done {
    			continue
    		}
    		start := f.offset(call.Call.Pos())
    		end := f.offset(call.Call.End())
    		str, nu := p.rewriteCall(f, call)
    		if str != "" {
    			f.Edit.Replace(start, end, str)
    			if nu {
    				needsUnsafe = true
    			}
    		}
    	}
    	return needsUnsafe
    }
    
    // rewriteCall rewrites one call to add pointer checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. docs_src/security/tutorial004_an_py39.py

    }
    
    
    class Token(BaseModel):
        access_token: str
        token_type: str
    
    
    class TokenData(BaseModel):
        username: Union[str, None] = None
    
    
    class User(BaseModel):
        username: str
        email: Union[str, None] = None
        full_name: Union[str, None] = None
        disabled: Union[bool, None] = None
    
    
    class UserInDB(User):
        hashed_password: str
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top