Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 342 for isolating (0.25 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/generated/sources/headers/java/main/A.txt").exists()
            !file("build/classes/java/main/A.txt").exists()
        }
    
        def "an isolating processor is also a valid aggregating processor"() {
            given:
            withProcessor(new HelperProcessorFixture().withDeclaredType(IncrementalAnnotationProcessorType.AGGREGATING))
            java "@Helper class A {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //
            //  - TensorArray ops operating on the same TensorArray instance.
            //  - Stack ops operating on the same Stack instance.
            //
            // To work around this we avoid isolating these specific ops.  Because
            // of this concession it is unsound to auto-cluster them because then
            // we'd create clusters we could not compile (because we can't constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                return AnnotationProcessorResult.Type.AGGREGATING;
            }
            if (type.equals(InternalAnnotationProcessorResult.TYPE_ISOLATING)) {
                return AnnotationProcessorResult.Type.ISOLATING;
            }
            return AnnotationProcessorResult.Type.UNKNOWN;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: empty-hostname
      hostnames:
        - "bar.com"
        - "*.example.com" # request matching is prevented by the isolation wildcard-example-com listener
        - "*.foo.example.com" # request matching is prevented by the isolation wildcard-foo-example-com listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: isolation-istio.gateway-conformance-infra.svc.domain.suffix
        internal.istio.io/parents: Gateway/isolation/empty-hostname.gateway-conformance-infra
      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
      servers:
      - hosts:
        - '*/*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

    kind: Gateway
    metadata:
      creationTimestamp: null
      name: isolation
      namespace: gateway-conformance-infra
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/plugin-execution-isolation.apt

    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     -----
     Maven plugins
     -----
     The Maven Team
     -----
    
    Maven plugin execution isolation
    
     Maven2 takes advantage of Plexus' ability to execute a component using a
     ClassWorlds ClassRealm that is populated with the JAR containing the
     component in question and all of its dependencies. Using ClassWorlds
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 03 09:12:28 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorNestingIntegrationTest.groovy

        }
    
        /*
         * This is not intended, but current behavior. We'll need to find a way to pass the service
         * registry across the classloader isolation barrier.
         */
        def "workers with classpath isolation cannot spawn more work with #nestedIsolationMode"() {
            buildFile << """
                ${getWorkActionWithNesting("classLoaderIsolation", nestedIsolationMode)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersIntegrationTest.groovy

            outputContains("service: value is 1")
            outputContains("value = 1")
    
            where:
            // TODO - this should work with classloader isolation too
            isolationMode << ['noIsolation']
        }
    
        def "can provide managed object parameters with isolation mode #isolationMode"() {
            file('buildSrc/src/main/java').createDir()
            file('buildSrc/src/main/java/SomeExtension.java').text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/file/ArchiveOperationsIntegrationTest.groovy

            run "myTask"
    
            then:
            file("build/unpacked/file.txt").isFile()
    
            where:
            archiveType << ['gzip', 'bzip2']
        }
    
        def "can read #archiveType resources in #isolation isolation worker action"() {
    
            given:
            file("inputs/file.txt") << "some text"
            buildFile << """
    
                ${compressTaskDeclaration(archiveType)}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.1K bytes
    - Viewed (0)
Back to top