Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 340 for DecInt (0.27 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocatorTest.groovy

            when:
            1 * system.getProperty("maven.repo.local") >> repo2.absolutePath
            then:
            locator.localMavenRepository == repo2
        }
    
        def "throws exception on broken global settings file with decent error message"() {
            given:
            def settingsFile = locations.globalSettingsFile
            settingsFile << "broken content"
            when:
            locator.localMavenRepository
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/versions.md

    After you have tests, then you can upgrade the **FastAPI** version to a more recent one, and make sure that all your code is working correctly by running your tests.
    
    If everything is working, or after you make the necessary changes, and all your tests are passing, then you can pin your `fastapi` to that new recent version.
    
    ## About Starlette
    
    You shouldn't pin the version of `starlette`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 20:50:37 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  3. src/runtime/proflabel.go

    	// setProfLabel operations, not just the most recent one. This
    	// is important because profBuf.read will observe different
    	// labels set by different setProfLabel operations on
    	// different goroutines, so it needs to synchronize with all
    	// of them (this wouldn't be an issue if we could synchronize
    	// on &getg().labels since we would synchronize with each
    	// most-recent labels write separately.)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/configuration/HelpTest.groovy

    class HelpTest extends AbstractProjectBuilderSpec {
        Help helpTask
    
        def setup() {
            helpTask = project.tasks.create("somehelp", Help.class)
        }
    
        def "gives decent error message for unknown tasks"() {
            when:
            helpTask.setTaskPath("notexisting")
            helpTask.displayHelp()
            then:
            def e = thrown(TaskSelectionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 15 07:22:20 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

                    .documentedAt("https://github.com/gradle/gradle/README.md")
                    .severity(Severity.WARNING)
                    .solution("Please use a more recent plugin version")
            );
            // end::problems-api-report[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

    import java.util.Map;
    import java.util.Optional;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * Reuses the services for the most recent Gradle user home dir. Could instead cache several most recent and clean these up on memory pressure, however in practise there is only a single user home dir associated with a given build process.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/util/iptables/save_restore_test.go

    		-A KUBE-SVC-2222222222222222 -m comment --comment "kube-system/kube-dns:dns-tcp" -j KUBE-SVC-3333333333333333
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

            then:
            mavenProjects.size() == 2
            mavenProjects[0].name == 'webinar-parent'
            mavenProjects[1].name == 'webinar-api'
        }
    
        def "fails with decent exception if pom is incorrect"() {
            given:
            def pom = temp.file("pom.xml")
            pom.text = """<project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>util</artifactId>
      <version>2.5</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cloudresource/cloud_request_manager.go

    	}
    }
    
    // NodeAddresses waits for the first sync loop to run. If no successful syncs
    // have run, it will return the most recent error. If node addresses have been
    // synced successfully, it will return the list of node addresses from the most
    // recent successful sync.
    func (m *cloudResourceSyncManager) NodeAddresses() ([]v1.NodeAddress, error) {
    	m.nodeAddressesMonitor.L.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 18:29:23 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    	result := sets.New[string]()
    
    	for _, devs := range dev {
    		result.Insert(devs...)
    	}
    	return result
    }
    
    // New returns an instance of Checkpoint - must be an alias for the most recent version
    func New(devEntries []PodDevicesEntry, devices map[string][]string) DeviceManagerCheckpoint {
    	return newV2(devEntries, devices)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top