Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 474 for logic (0.19 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

    import javax.annotation.CheckForNull;
    import java.io.PrintStream;
    
    /**
     * An entry point is the point at which execution will never return from.
     * <p>
     * Its purpose is to consistently apply our completion logic of forcing the JVM
     * to exit at a certain point instead of waiting for all threads to die, and to provide
     * some consistent unhandled exception catching.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [source,kotlin]
    ----
    include("app")
    include("business-logic")
    include("data-model")
    ----
    
    You can also include entire builds using link:{javadocPath}/org/gradle/api/initialization/IncludedBuild.html[`includeBuild`].
    
    == Settings File Scripting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/App").assertExists()
            installation("build/install/main/debug").exec().out == app.expectedOutput
        }
    
        def "build logic can change source layout convention"() {
            given:
            def app = new SwiftApp()
            settingsFile << "rootProject.name = '${app.projectName}'"
            app.writeToSourceDir(file("Sources"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	k8stesting "k8s.io/client-go/testing"
    )
    
    // Test_Controller validates the garbage collection logic for the apiserverleasegc controller.
    func Test_Controller(t *testing.T) {
    	tests := []struct {
    		name       string
    		namespaces []string
    		actions    [][]string // verb and resource
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    +
    This lets you package a custom Gradle distribution containing custom build logic and plugins. You can combine this with the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle wrapper>> to make custom logic available to all builds in your enterprise.
    
    If more than one init script is found, they will all be executed in the order specified above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. pkg/kubelet/util/util_windows.go

    func LocalEndpoint(path, file string) (string, error) {
    	// extract the podresources config name from the path. We only need this on windows because the preferred layout of pipes,
    	// this is why we have the extra logic in here instead of changing the function signature. Join the file to make sure the
    	// last path component is a file, so the operation chain works..
    	podResourcesDir := filepath.Base(filepath.Dir(filepath.Join(path, file)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. releasenotes/notes/49700.yaml

    should be fairly straight forward. Annotate your namespace with the appropriate waypoint and it should function in a similar way.
    
          If you were using service account attachment there will be more to understand. Under the old waypoint logic all types of traffic, both addressed to a service as well as addressed to a workload, were treated similarly because there wasn't a good way to properly associate a waypoint to a service. With the new attachment this limitation has been resolved. This...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/openapi-webhooks.md

    And **your users** define in some way (for example in a web dashboard somewhere) the **URL** where your app should send those requests.
    
    All the **logic** about how to register the URLs for webhooks and the code to actually send those requests is up to you. You write it however you want to in **your own code**.
    
    ## Documenting webhooks with **FastAPI** and OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. pkg/util/filesystem/util_windows_test.go

    		assert.True(t, result, "Unexpected result: false from IsUnixDomainSocket.")
    		wg.Done()
    	}()
    
    	// Wait a sufficient amount of time to make sure the retry logic kicks in
    	time.Sleep(socketDialRetryPeriod)
    
    	// Replace the temporary file with an actual Unix domain socket file
    	os.Remove(testFile)
    	ta, err := net.ResolveUnixAddr("unix", testFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       visible static factory method whose return type is {@code C} or {@code C}'s subtype.
       * </ul>
       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top