Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,218 for Hour (0.09 sec)

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

    	NFTA_MATCH_INFO    = 0x3
    	NFTA_COMPAT_UNSPEC = 0x0
    	NFTA_COMPAT_NAME   = 0x1
    	NFTA_COMPAT_REV    = 0x2
    	NFTA_COMPAT_TYPE   = 0x3
    )
    
    type RTCTime struct {
    	Sec   int32
    	Min   int32
    	Hour  int32
    	Mday  int32
    	Mon   int32
    	Year  int32
    	Wday  int32
    	Yday  int32
    	Isdst int32
    }
    
    type RTCWkAlrm struct {
    	Enabled uint8
    	Pending uint8
    	Time    RTCTime
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. README.md

    ```gradle
    dependencies {
      // Pick one:
    
      // 1. Use Guava in your implementation only:
      implementation("com.google.guava:guava:33.2.1-jre")
    
      // 2. Use Guava types in your public API:
      api("com.google.guava:guava:33.2.1-jre")
    
      // 3. Android - Use Guava in your implementation only:
      implementation("com.google.guava:guava:33.2.1-android")
    
      // 4. Android - Use Guava types in your public API:
      api("com.google.guava:guava:33.2.1-android")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/simple-oauth2.md

    And the spec says that the fields have to be named like that. So `user-name` or `email` wouldn't work.
    
    But don't worry, you can show it as you wish to your final users in the frontend.
    
    And your database models can use any other names you want.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<build_lifecycle.adoc#build_lifecycle,Authoring Gradle Builds>> :: Develop tasks and plugins to customize your build.
    <<building_java_projects.adoc#building_java_projects,Authoring JVM Builds>> :: Use Gradle with your Java project.
    <<dependency_management_terminology.adoc#dependency_management_terminology,Working with Dependencies>> :: Add dependencies to your build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/nosql-databases-couchbase.md

    * Generate a document ID from it.
    * Get the document with that ID.
    * Put the contents of the document in a `UserInDB` model.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    	}
    	tc.runTest(t)
    }
    
    func TestAvoidUnnecessaryUpdates(t *testing.T) {
    	now := metav1.Time{Time: time.Now().Add(-time.Hour)}
    	tc := testCase{
    		minReplicas:             2,
    		maxReplicas:             6,
    		specReplicas:            2,
    		statusReplicas:          2,
    		expectedDesiredReplicas: 2,
    		CPUTarget:               30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-status-codes.md

    Par exemple, disons que vous voulez avoir un *chemin d'accès* qui permet de mettre à jour les éléments et renvoie les codes HTTP 200 "OK" en cas de succès.
    
    Mais vous voulez aussi qu'il accepte de nouveaux éléments. Et lorsque les éléments n'existaient pas auparavant, il les crée et renvoie un code HTTP de 201 "Créé".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

        id 'application'
    }
    ----
    =====
    
    Let's apply a plugin to our project that is maintained and distributed by Gradle called the <<publishing_maven#publishing_maven,Maven Publish Plugin>>.
    The Maven Publish Plugin provides the ability to publish build artifacts to an https://maven.apache.org/[Apache Maven repository].
    It can also publish to Maven local which is a repository located on your machine.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/first-steps.md

        Because we are using a relative URL, if your API was located at `https://example.com/`, then it would refer to `https://example.com/token`. But if your API was located at `https://example.com/api/v1/`, then it would refer to `https://example.com/api/v1/token`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top