Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for getRead (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java

                classLoader = request.getBean().getClass().getClassLoader();
            }
    
            BeanExpressionEvaluator evaluator = new BeanExpressionEvaluator(request);
    
            ObjectWithFieldsConverter converter = new EnhancedConfigurationConverter();
    
            try {
                converter.processConfiguration(
                        converterLookup, request.getBean(), classLoader, plexusConfig, evaluator, null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/msvcpp/VisualStudioVersion.java

            this.version = VersionNumber.parse(version);
            this.year = year;
        }
    
        public VersionNumber getVersion() {
            return version;
        }
    
        public String getYear() {
            return year;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    
                abstract class Test extends DefaultTask {
                    @Nested abstract Property<Bean> getBean()
                    @TaskAction def test() { assert false }
                }
    
                tasks.register('test', Test) {
                    bean = new Bean().tap {
                        files = configurations.implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

          }
          is_cpu_read = parsed_name.type == kCpuDeviceType;
          return success();
        }
      }
      is_cpu_read = false;
      return success();
    }
    
    // Get the reads to hoist in the `replicate`.
    LogicalResult GetReads(FuncOp func, ReplicateOp replicate,
                           llvm::SmallVector<ReadVariableOp, 4>& reads) {
      for (Operation& op : replicate.getBody().front()) {
        if (auto read = llvm::dyn_cast<ReadVariableOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

        }
    
        public Ref createAnnotatedTag(String tagName, String message) throws GitAPIException {
            return git.tag().setName(tagName).setAnnotated(true).setMessage(message).call();
        }
    
        public Ref getHead() throws IOException {
            return git.getRepository().findRef("HEAD");
        }
    
        @Override
        public TestFile getWorkTree() {
            return new TestFile(git.getRepository().getWorkTree());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. pilot/test/xdstest/test.go

    		}
    		return matches
    	case *listener.ListenerFilterChainMatchPredicate_DestinationPortRange:
    		return int32(port) >= r.DestinationPortRange.GetStart() && int32(port) < r.DestinationPortRange.GetEnd()
    	default:
    		panic("unsupported predicate")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 21:47:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java

        /**
         * Gets the bean to configure. Eventually, a valid request must have a bean set.
         *
         * @return The bean to configure, or {@code null} if none.
         */
        Object getBean();
    
        /**
         * Sets the bean to configure. Eventually, a valid request must have a bean set.
         *
         * @param bean The bean to configure, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

        private ClassLoader classLoader;
    
        private BeanConfigurationValuePreprocessor valuePreprocessor;
    
        private BeanConfigurationPathTranslator pathTranslator;
    
        public Object getBean() {
            return bean;
        }
    
        public DefaultBeanConfigurationRequest setBean(Object bean) {
            this.bean = bean;
            return this;
        }
    
        public Object getConfiguration() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                        @Input
                        String getExtension()
                        void setExtension(String value)
                        @${ann.simpleName}
                        String getBad()
                        void setBad(String value)
                    }
    
                    void transform(TransformOutputs outputs) {
                        throw new RuntimeException()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
Back to top