Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 2700 (0.1 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "4000"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "1000", "memory": "2000"}).Obj(),
    			},
    			expectedPriorities: []framework.NodeScore{{Name: "node1", Score: 10}, {Name: "node2", Score: 32}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/requirements.in

    opentelemetry-propagator-b3==1.22.0
    opentelemetry-sdk==1.22.0
    opentelemetry-semantic-conventions==0.43b0
    opentelemetry-util-http==0.43b0
    prometheus-client==0.19.0
    requests==2.31.0
    simplejson==3.19.2
    urllib3==2.2.0
    gunicorn==22.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 485 bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * ✏ Fix typo re-word in `docs/tutorial/handling-errors.md`. PR [#2700](https://github.com/tiangolo/fastapi/pull/2700) by [@graue70](https://github.com/graue70).
    
    ### Translations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/constants/constants.go

    	// creates target folder if not already exists
    	if err := os.MkdirAll(tempDir, 0700); err != nil {
    		return "", errors.Wrapf(err, "failed to create directory %q", tempDir)
    	}
    
    	timestampDirName := fmt.Sprintf("%s-%s", dirName, time.Now().Format("2006-01-02-15-04-05"))
    	timestampDir := filepath.Join(tempDir, timestampDirName)
    	if err := os.Mkdir(timestampDir, 0700); err != nil {
    		return "", errors.Wrap(err, "could not create timestamp directory")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. src/time/format.go

    //	Day of the year: "__2" "002"
    //	Hour: "15" "3" "03" (PM or AM)
    //	Minute: "4" "04"
    //	Second: "5" "05"
    //	AM/PM mark: "PM"
    //
    // Numeric time zone offsets format as follows:
    //
    //	"-0700"     ±hhmm
    //	"-07:00"    ±hh:mm
    //	"-07"       ±hh
    //	"-070000"   ±hhmmss
    //	"-07:00:00" ±hh:mm:ss
    //
    // Replacing the sign in the format with a Z triggers
    // the ISO 8601 behavior of printing Z instead of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/templates/productpage.html

        </div>
    
      </div>
    </div>
    
    <!-- Book details table -->
    <div class="container mt-8 mx-auto px-4 sm:px-6 lg:px-8">
      <div class="mt-4 py-10">
          <div class="max-w-2xl">
            <div class="flow-root">
              {% if detailsStatus == 200: %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	realManifestDir := filepath.Join(kubernetesDir, constants.ManifestsSubDirName)
    	if err := os.Mkdir(realManifestDir, 0700); err != nil {
    		return nil, errors.Wrapf(err, "couldn't create a realManifestDir for the upgrade")
    	}
    
    	upgradedManifestDir := filepath.Join(kubernetesDir, "upgraded-manifests")
    	if err := os.Mkdir(upgradedManifestDir, 0700); err != nil {
    		return nil, errors.Wrapf(err, "couldn't create a upgradedManifestDir for the upgrade")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                    // TODO GlobalCache require(!cacheDir.isDirectory)
                    Files.createDirectories(cacheDir.toPath())
                    chmod(cacheDir, 448) // octal 0700
                    markAccessed(cacheDir)
                    val stateFiles = mutableListOf<File>()
                    val layout = WriteableLayout(cacheDir, stateFiles::add)
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        runtimeOnly(libs.groovyDatetime)
        runtimeOnly(libs.groovyDoc)
        runtimeOnly(libs.groovyNio)
        runtimeOnly(libs.groovySql)
        runtimeOnly(libs.groovyTest)
    
        // The bump to SSHD 2.10.0 causes a global exclusion for `groovy-ant` -> `ant-junit`, so forcing it back in here
        // TODO investigate why we depend on SSHD as a platform for internal-integ-testing
        runtimeOnly(libs.antJunit)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheRunLenient "$MAX_PROBLEMS_SYS_PROP=2000", 'all'
    
            then:
            executed(':problems', ':moreProblems', ':all')
            configurationCache.assertStateStored()
            postBuildOutputContains("Configuration cache entry stored with 6 problems.")
    
            when:
            configurationCacheFails "$MAX_PROBLEMS_SYS_PROP=2000", 'all'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top