Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 454 for logic (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

    }
    
    
    interface SoftwareTypeConventionRepository {
        fun findConventions(softwareTypeName: String): SoftwareTypeConventionResolutionResults?
    }
    
    
    /**
     * Transformation logic for the kinds of resolution results that appear in conventions.
     * For any of the supported result records, supports replacing the `conventions { ... }` receiver in it with
     * the given [targetBaseReceiver].
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    				}
    			} else {
    				// ...otherwise fall back on the old behavior of uploading all
    				// unuploaded files.
    				//
    				// TODO(rfindley): invert this logic following more testing. We
    				// should only upload if we know both the asof date and the report
    				// date, and they are acceptable.
    				u.logger.Printf("Uploadable (missing date): %s", fi.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

            (isa<TF::TPUExecuteOp, TF::TPUExecuteAndUpdateVariablesOp>(def_op))) {
          return true;
        }
        if (BlockArgument block_arg = mlir::dyn_cast<BlockArgument>(arg)) {
          // Skip the folding logic if the block argument is not from the function
          // arguments. This can happen when the argument is from a while loop.
          if (block_arg.getParentRegion() != &func_op.getRegion()) {
            return false;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    
    This situation may arise when plugins or build logic eagerly queries an existing JVM Configuration's attributes to create a new Configuration with the same attributes.
    Previously, this logic would have omitted the two above noted attributes entirely, while now the same logic will copy the attributes and finalize the project's Java toolchain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top