Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,601 for Here (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    }
    
    // unixStat keeps a statistic how many requests were dropped within
    // a single second.
    type unixStat struct {
    	unixTime int64
    	requests int64
    }
    
    type droppedRequestsStats struct {
    	lock sync.RWMutex
    
    	// history stores the history of dropped requests.
    	history []unixStat
    
    	// To reduce lock-contention, we store the information about
    	// the current second here, which we can then access under
    	// reader lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. docs/en/docs/learn/index.md

    # Learn
    
    Here are the introductory sections and the tutorials to learn **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 195 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-closure-of/kotlin/build.gradle.kts

    import com.jfrog.bintray.gradle.BintrayExtension.PackageConfig
    
    plugins {
        id("com.jfrog.bintray") version "1.8.5"
    }
    
    // tag::closureOf[]
    bintray {
        pkg(closureOf<PackageConfig> {
            // Config for the package here
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 254 bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/README

    API changes and other small changes to the standard library go here....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 16:44:53 UTC 2024
    - 69 bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/comments.input

    package main
    
    func main() {}
    
    // comment here
    
    func f() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 19:54:45 UTC 2011
    - 76 bytes
    - Viewed (0)
  6. samples/wasm_modules/README.md

    # WASM demo
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 144 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/groovy/src/main/java/org/gradle/sample/SimplePlugin.java

    package org.gradle.sample;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    
    public class SimplePlugin implements Plugin<Project> {
        public void apply(Project project) {
            // Add plugin implementation here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 236 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/kotlin/src/main/java/org/gradle/sample/SimplePlugin.java

    package org.gradle.sample;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    
    public class SimplePlugin implements Plugin<Project> {
        public void apply(Project project) {
            // Add plugin implementation here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 236 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
Back to top