Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 266 for getVars (0.36 sec)

  1. src/cmd/go/internal/test/testflag.go

    	return f.abs
    }
    
    func (f *outputdirFlag) Set(value string) (err error) {
    	if value == "" {
    		f.abs = ""
    	} else {
    		f.abs, err = filepath.Abs(value)
    	}
    	return err
    }
    
    func (f *outputdirFlag) getAbs() string {
    	if f.abs == "" {
    		return base.Cwd()
    	}
    	return f.abs
    }
    
    // vetFlag implements the special parsing logic for the -vet flag:
    // a comma-separated list, with distinguished values "all" and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                            for (SourceSet sourceSet : project.getExtensions().getByType(JavaPluginExtension.class).getSourceSets()) {
                                result.addAll(sourceSet.getOutput().getDirs().getFiles());
                            }
                            return result;
                        }
                    });
    
                    task.configure(new Action<GenerateEclipseClasspath>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

        private static class SwiftCompileArgsTransformer implements ArgsTransformer<SwiftCompileSpec> {
            @Override
            public List<String> transform(SwiftCompileSpec swiftCompileSpec) {
                return swiftCompileSpec.getArgs();
            }
        }
    
        private static class OutputFileMap {
            private Map<String, Entry> entries = new HashMap<String, Entry>();
    
            public Builder root() {
                return newEntry("");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

                                    PatternRewriter& rewriter) const override {
        auto preceding_qcast =
            q_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
        if (!preceding_qcast) return failure();
    
        auto new_qcast = rewriter.create<quantfork::QuantizeCastOp>(
            q_op.getLoc(), q_op.getType(), preceding_qcast.getArg());
        new_qcast->setAttr(kVolatileOpAttrName, rewriter.getUnitAttr());
        q_op->replaceAllUsesWith(new_qcast);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * In both cases, the implementation of the calculated property getter may not call any setter method.
     *
     * <h3>Abstract classes</h3>
     * <p>
     * A managed type can be implemented as an abstract class.
     * All property getters and setters must be declared {@code abstract} (with the exception of calculated read-only properties).
     * The class cannot contain instance variables, constructors, or any methods that are not a getter or setter.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/test/config/mock_config.pb.go

    	return file_pkg_test_config_mock_config_proto_rawDescGZIP(), []int{0}
    }
    
    func (x *MockConfig) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    func (x *MockConfig) GetPairs() []*ConfigPair {
    	if x != nil {
    		return x.Pairs
    	}
    	return nil
    }
    
    type ConfigPair struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == 'Type \'MyTask\' property \'badTime\' is private and annotated with @Input'
                    details == 'Annotations on private getters are ignored'
                    solutions == [
                        'Make the getter public',
                        'Annotate the public version of the getter',
                    ]
                    additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinary.java

            defines.addAll(getDefines("rcCompiler"));
            return defines;
        }
    
        @Override
        public LanguageStandard getLanguageStandard() {
            return LanguageStandard.from(binary.getCppCompiler().getArgs());
        }
    
        private List<String> getDefines(String tool) {
            PreprocessingTool rcCompiler = findCompiler(tool);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Finds the mapping from a replicate argument to an execute operand.
      llvm::SmallDenseMap<int64_t, int64_t, 8> replicate_arg_to_execute_arg;
      for (auto index_and_arg : llvm::enumerate(execute.getArgs())) {
        auto arg = SkipIdentity(index_and_arg.value(), /*allow_other_use=*/false);
        if (!arg.hasOneUse() ||
            !mlir::isa<TF::ResourceType>(getElementTypeOrSelf(arg.getType()))) {
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
            bean.CPPCompiler = 'CPPCompiler'
            bean.a = 'some a'
            bean.b = 'some b'
    
            then:
            // Exercise getters
            bean.url == 'lower-case' && bean.getUrl() == bean.url
            bean.URL == 'upper-case' && bean.getURL() == bean.URL
            bean.cCompiler == 'lower-case first char' && bean.getcCompiler() == bean.cCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top