Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,396 for rfind (0.23 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r24/BuildInvocationsCrossVersionSpec.groovy

            }
    
            then:
            buildInvocations != null
            buildInvocations.taskSelectors.find { it.name == 'alpha' }.description == 'ALPHA from root project'
            buildInvocations.taskSelectors.find { it.name == 'beta' }.description == null
            buildInvocations.taskSelectors.find { it.name == 'gamma' }.description == 'GAMMA from sub'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FilesFinder.java

    import java.io.FileFilter;
    
    /**
     * Encapsulates a criteria for finding files.
     */
    public interface FilesFinder {
        /**
         * Find files according to this finder's criteria within the supplied base
         * directory that pass the supplied {@link FileFilter}.
         */
        Iterable<File> find(File baseDir, FileFilter filter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1002 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

                    RootBuild rootBuild = spec.systemPropertyDefinitions.find { it instanceof RootBuild }
                    expectedValue = rootBuild.propertyValue()
                    break
                case SystemPropertyAccess.BUILDSRC_SETTINGS_SCRIPT:
                    BuildSrc buildSrcBuild = spec.systemPropertyDefinitions.find { it instanceof BuildSrc }
                    expectedValue = buildSrcBuild.propertyValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFileTest.groovy

            when:
            filtersFile.loadDefaults()
    
            then:
            Node sourceFiles = itemGroup('Filters').Filter.find({it.'@Include' == 'Source Files'}) as Node
            sourceFiles.Extensions[0].text() == 'cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx'
    
            Node headerFiles = itemGroup('Filters').Filter.find({it.'@Include' == 'Header Files'}) as Node
            headerFiles.Extensions[0].text() == 'h;hpp;h++;hxx;hm;inl;inc;xsd'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:02:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf-hashtables.mlir

      // CHECK-NEXT:  [[FIND:%.*]] = "tfl.hashtable_find"([[HASH_TABLE]], [[CST]], %arg0) : (tensor<1x!tf_type.resource>, tensor<!tf_type.string>, tensor<i64>) -> tensor<*xi64>
      // CHECK-NEXT:  return [[FIND]] : tensor<*xi64>
      func.return %1 : tensor<*xi64>
    }
    
    // -----
    
    // Test for case with int64 -> string hashtable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultExtraPropertiesExtension.java

        }
    
        @Override
        @Nullable
        public Object get(String name) {
            Object value = find(name);
            if (value == null && !has(name)) {
                throw new UnknownPropertyException(this, name);
            }
            return value;
        }
    
        @Nullable
        public Object find(String name) {
            return storage.get(name);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

                || resourcePrefixes.find(resourceName);
        }
    
        private boolean isPackageAllowed(String packageName) {
            if (disallowedPackagePrefixes.find(packageName)) {
                return false;
            }
    
            return SYSTEM_PACKAGES.contains(packageName)
                || packageNames.contains(packageName)
                || packagePrefixes.find(packageName);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·IndexByte<ABIInternal>(SB),NOSPLIT,$0-40
    	// X10 = b_base
    	// X11 = b_len
    	// X12 = b_cap (unused)
    	// X13 = byte to find
    	AND	$0xff, X13
    	MOV	X10, X12		// store base for later
    	ADD	X10, X11		// end
    	SUB	$1, X10
    
    loop:
    	ADD	$1, X10
    	BEQ	X10, X11, notfound
    	MOVBU	(X10), X14
    	BNE	X13, X14, loop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 919 bytes
    - Viewed (0)
  9. operator/pkg/verifier/verify_test.go

    		status     appsv1.DeploymentStatus
    		condType   appsv1.DeploymentConditionType
    		shouldFind bool
    	}{
    		{
    			// Simple "find Available in Available"
    			status:     availableDeployment.Status,
    			condType:   appsv1.DeploymentAvailable,
    			shouldFind: true,
    		},
    		{
    			// find Available in Progressing,Available
    			// valid in e.g. RollingUpdate
    			status:     scaleUpRollingDeployment.Status,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaProjectFixture.groovy

            def compilerConfig = ipr.component.find { it.@name == "CompilerConfiguration" }
            return compilerConfig.bytecodeTargetLevel
        }
    
        def getLibraryTable() {
            return ipr.component.find {
                it.@name == "libraryTable"
            }
        }
    
        ProjectModules getModules() {
            def projectModuleManager = ipr.component.find { it.@name == "ProjectModuleManager" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top