Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 3,023 for addSdk (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

     * added to the task graph.  For example "clean build" on the command line implies that the user wants
     * to run the clean tasks of each project before the build tasks of each project.  Ordinal nodes ensure
     * this order by tracking the dependencies of destroyers and producers in each group of tasks added to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultPhasedBuildActionExecuterBuilderTest.groovy

            when:
            builder.buildFinished(Stub(BuildAction), Stub(IntermediateResultHandler))
            builder.buildFinished(Stub(BuildAction), Stub(IntermediateResultHandler))
    
            then:
            IllegalArgumentException e2 = thrown()
            e2.message == 'BuildFinishedAction has already been added. Only one action per phase is allowed.'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

            }
            int current = 0;
            boolean added = false;
            final Map<Pattern, CrawlerClient> newClientMap = new LinkedHashMap<>();
            for (final Map.Entry<Pattern, CrawlerClient> entry : clientMap.entrySet()) {
                if (pos == current) {
                    newClientMap.put(Pattern.compile(regex), client);
                    added = true;
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/kube/kclient/interfaces.go

    	// via AddEventHandler have been called with the initial state.
    	// note: this differs from a standard informer HasSynced, which does not check handlers have been called.
    	HasSynced() bool
    	// ShutdownHandlers terminates all handlers added by AddEventHandler.
    	// Warning: this only applies to handlers called via AddEventHandler; any handlers directly added
    	// to the underlying informer are not touched
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

        }
    
        def "when --foreground argument is added, it skips adding --daemon/--no-daemon"() {
            when:
            executer.withArgument("--foreground")
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
            !allArgs.contains("--no-daemon")
        }
    
        def "when argument is added explicitly, no --daemon argument is added and requireDaemon gets overridden"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * assert project.custom.foo == "bar"
     *
     * // also via a namespace method
     * project.custom {
     *   assert foo == "bar"
     *   foo = "other"
     * }
     * assert project.custom.foo == "other"
     *
     * // Extensions added with the extension container's create method are themselves extensible
     * assert project.custom instanceof ExtensionAware
     * project.custom.extensions.create("nested", MyExtension, "baz")
     * assert project.custom.nested.foo == "baz"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

        value {
          b: false
        }
      }
    }
    versions {
      producer: 309
    }
    
    # Tests single target node with no pruning set. All nodes will remain in the
    # graph and the target node is added to the graph fetch as a control.
    #
    # CHECK-LABEL: func @main
    # CHECK-SAME:  control_outputs = "AssignAdd"
    # CHECK-SAME:  inputs = ""
    # CHECK-SAME:  outputs = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
      // A "Failed" condition is added via the /status subresource,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                previous.size -> {
                    val added = current.size - upToDatePrefix
                    when {
                        added == 1 -> "init script '${displayNameOf(current[upToDatePrefix])}' has been added"
                        added > 1 -> "init script '${displayNameOf(current[upToDatePrefix])}' and ${added - 1} more have been added"
                        else -> null
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top