Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,252 for Capget (0.23 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

            XcodeTarget target = objectFactory.newInstance(XcodeTarget.class, name, id);
            target.setTaskName(taskName);
            target.setGradleCommand(gradleCommand);
            target.setProductName(productName);
            target.getSources().setFrom(sources);
    
            return target;
        }
    
        private static class XcodeBridge implements Action<String> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.cc

      ConversionTarget target(mlir_context);
    
      if (legalize_chlo) {
        target.addIllegalDialect<chlo::ChloDialect>();
        target.addIllegalDialect<stablehlo::StablehloDialect>();
      } else {
        target.addLegalDialect<chlo::ChloDialect>();
      }
      target.addLegalDialect<MhloDialect>();
      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<func::FuncDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/mdo/java/InputLocation.java

        /**
         * Merges the {@code source} location into the {@code target} location.
         *
         * @param target the target location
         * @param source the source location
         * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target}
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, boolean sourceDominant) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. internal/event/target/mysql.go

    	quitCh chan struct{}
    }
    
    // ID - returns target ID.
    func (target *MySQLTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    func (target *MySQLTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *MySQLTarget) Store() event.TargetStore {
    	return target.store
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsThumbnailQueueCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setTarget_Regexp(String target) {
            setTarget_Regexp(target, null);
        }
    
        public void setTarget_Regexp(String target, ConditionOptionCall<RegexpQueryBuilder> opLambda) {
            RegexpQueryBuilder builder = regRegexpQ("target", target);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 51.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        /**
         * Returns the authentication target.
         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget() {
            return target;
        }
    
        /**
         * Sets the authentication target.
         *
         * @param target The authentication target.
         */
        public void setTarget(String target) {
            this.target = target;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

                        ),
                        program.stage2.source
                    )
                )
            )
        }
    
        @Test
        fun `Project target - script-plugin - empty`() {
    
            assertThat(
                "reduces to static program that closes target scope then applies base plugins",
                partialEvaluationOf(
                    Program.Empty,
                    ProgramKind.ScriptPlugin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildToolingModelController.java

            if (target.getOwner() != buildState) {
                throw new IllegalArgumentException("Project has unexpected owner.");
            }
            // Force configuration of the containing build and then locate the builder for target project
            buildController.configureProjects();
            return doLocate(target, modelName, param);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 17:25:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. docs/em/docs/how-to/graphql.md

    * <a href="https://strawberry.rocks/" class="external-link" target="_blank">🍓</a> 👶
        * ⏮️ <a href="https://strawberry.rocks/docs/integrations/fastapi" class="external-link" target="_blank">🩺 FastAPI</a>
    * <a href="https://ariadnegraphql.org/" class="external-link" target="_blank">👸</a>
        * ⏮️ <a href="https://ariadnegraphql.org/docs/starlette-integration" class="external-link" target="_blank">🩺 💃</a> (👈 ✔ FastAPI)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/build.xml

        <property name="src.dir" value="src"/>
        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <!-- tag::build-required[] -->
        <target name="buildRequiredProjects">
            <ant dir="${root.dir}/util" target="build"/>  <!--1-->
        </target>
        <!-- end::build-required[] -->
    
        <target name="compile" depends="buildRequiredProjects">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 922 bytes
    - Viewed (0)
Back to top