Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,767 for depend (0.18 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

            output.contains '''
                lib - Components that depend on native library 'lib'
                +--- lib:sharedLibrary NOT BUILDABLE
                |    \\--- main:executable
                \\--- lib:staticLibrary NOT BUILDABLE
    
                main - Components that depend on native executable 'main'
                \\--- main:executable
    
                util - Components that depend on native library 'util'
                +--- util:sharedLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. src/math/bits/bits.go

    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft8(x uint8, k int) uint8 {
    	const n = 8
    	s := uint(k) & (n - 1)
    	return x<<s | x>>(n-s)
    }
    
    // RotateLeft16 returns the value of x rotated left by (k mod 16) bits.
    // To rotate x right by k bits, call RotateLeft16(x, -k).
    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft16(x uint16, k int) uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            """
    
            then:
            fails "foo"
    
            and:
            failure.assertHasCause("Cannot add task 'foo' as a task with that name already exists.")
        }
    
        def "a non-rule-source task can depend on a rule-source task"() {
            given:
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
         *     With a deep and wide hierarchy, each subproject is formed as above, except each group of libraries depend on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                        t.doFirst { throw new RuntimeException("broken")}
                    }
                }
            '''
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21542")
        def "finalizer can depend on a task that it finalizes"() {
            given:
            buildFile '''
                task finalizer(type: BreakingTask) {
                  dependsOn "finalizerDep"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

          # it, and print that list for debugging. Not really clear if this is
          # helpful since the only examples I've seen are enormous.
          bazel query "rdeps(kind(py_test, $(cat $BATS_TEST_TMPDIR/deps)), $dep, 1)"
        done < $BATS_TEST_TMPDIR/missing_deps
        exit 1
      fi
    }
    
    # The Python package is not allowed to depend on any CUDA packages.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

          # it, and print that list for debugging. Not really clear if this is
          # helpful since the only examples I've seen are enormous.
          bazel cquery "rdeps(kind(py_test, $(cat $BATS_TEST_TMPDIR/deps)), $dep, 1)"
        done < $BATS_TEST_TMPDIR/missing_deps
        exit 1
      fi
    }
    
    # The Python package is not allowed to depend on any CUDA packages.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/hoist_loop_invariant.mlir

      return %0#0, %0#1 : tensor<i32>, tensor<i32>
    }
    
    // -----
    
    // Check that `tf.ReadVariableOp` is hoisted because the variable is readonly.
    // The following ops that depend on `tf.ReadVariableOp` and satisfy hoisting
    // conditions are also hoisted (i.e., `tf.Add` and `tf.Mul`).
    
    // CHECK-LABEL: readvariableop_is_hoisted_if_readonly
    // CHECK:       [[CST_0:%.*]] = "tf.Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 17:12:02 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		if !features.EnableK8SServiceSelectWorkloadEntries {
    			fo = append(fo, krt.FilterGeneric(func(a any) bool {
    				return a.(model.ServiceInfo).Source == kind.ServiceEntry
    			}))
    		}
    		services := krt.Fetch(ctx, WorkloadServices, fo...)
    		a.networkUpdateTrigger.MarkDependant(ctx) // Mark we depend on out of band a.Network
    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Updating task dependencies.
    +
    `compileJava` must depend on `prepare`, `package` must depend on `compileJava` rather than `ant_build`, and `assemble` must depend on `package` rather than the standard Gradle `jar` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top