Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for indy (0.09 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/DynamicGroovyPluginMixin.groovy

                        }
                    }
                }
            """
    
            file("buildSrc/build.gradle") << """
            compileGroovy {
                groovyOptions.optimizationOptions.indy = $enableIndy
            }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
        }
    
        abstract TestFile file(Object... path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

        public GroovyRuntime(Project project) {
            this.project = (ProjectInternal) project;
        }
    
        /**
         * Searches the specified class path for Groovy Jars ({@code groovy(-indy)}, {@code groovy-all(-indy)}) and returns a corresponding class path for executing Groovy tools such as the Groovy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDependencyResolveIntegrationTest.groovy

                }
            }
        }
    
        def "mixing variant aware and artifact selection is forbidden"() {
            buildFile << """
                dependencies {
                    conf('org:lib:1.0:indy') {
                        capabilities {
                            requireCapability("org:lib")
                        }
                    }
                }
            """
    
            when:
            fails ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/testing/fixture/GroovyCoverage.groovy

        static {
            SUPPORTED_BY_JDK = groovyVersionsSupportedByJdk(JavaVersion.current())
            SUPPORTS_GROOVYDOC = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "1.6.9")
            // Indy compilation doesn't work in 2.2.2 and before
            SUPPORTS_INDY = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.3.0")
            SUPPORTS_TIMESTAMP = VersionCoverage.versionsAtLeast(SUPPORTED_BY_JDK, "2.4.6")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/lstm_utils.h

                                        OpBuilder* builder);
    
    LogicalResult ConvertKerasLSTMLayer(mlir::func::FuncOp func_op,
                                        OpBuilder* builder, bool indy);
    
    }  // end namespace TFL
    }  // end namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

                return;
            }
            int ind1 = name.indexOf(':');
            int ind2 = name.lastIndexOf(':');
    
            if (ind1 == -1 || ind2 == -1) {
                return;
            }
    
            this.groupId = name.substring(0, ind1);
            if (ind1 == ind2) {
                this.artifactId = name.substring(ind1 + 1);
            } else {
                this.artifactId = name.substring(ind1 + 1, ind2);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. internal/s3select/json/testdata/7.json

    {"name":"Michael", "age": 31}
    {"name":"Andy", "age": 30}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 86 bytes
    - Viewed (0)
  8. hack/OWNERS

      - pwittrock
      - SataQiu
      - smarterclayton
      - soltysh # for sig-cli related stuff
      - spiffxp
      - sttts
      - thockin
      - wojtek-t
    emeritus_approvers:
      - eparis
      - fejta
      - ixdy
      - jbeda
      - lavalamp
      - zmerlynn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 777 bytes
    - Viewed (0)
  9. hack/testdata/recursive/rc/rc/busybox-broken.yaml

    apiVersion: v1
    ind: ReplicationController
    metadata:
      name: busybox2
      labels:
        app: busybox2
    spec:
      replicas: 1
      selector:
        app: busybox2
      template:
        metadata:
          name: busybox2
          labels:
            app: busybox2
        spec:
          containers:
          - image: busybox
            command:
              - sleep
              - "3600"
            imagePullPolicy: IfNotPresent
            name: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 423 bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    	// starting from the first '(', but skipping reserved names that have '('.
    	for _, ind := range bracketRx.FindAllStringSubmatchIndex(funcName, -1) {
    		foundReserved := false
    		for _, res := range reservedNames {
    			if funcName[ind[0]:ind[1]] == res {
    				foundReserved = true
    				break
    			}
    		}
    		if !foundReserved {
    			funcName = funcName[:ind[0]]
    			break
    		}
    	}
    	return funcName
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top