Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 185 for get_config (0.15 sec)

  1. subprojects/core/src/integTest/resources/org/gradle/api/resource/TextResourceIntegrationTest/shared/build.gradle

    class MyTask extends DefaultTask {
        @Nested
        TextResource config
    
        @OutputFile
        File output
    
        @TaskAction
        void generate() {
            getOutput().text = getConfig().asString()
        }
    }
    
    def generateConfigFile = tasks.register("generateConfigFile") {
        outputs.file "config.txt"
        doLast {
            file("config.txt").text = "my config"
        }
    }
    
    task generateConfigZip(type: Zip) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 27 20:48:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certlist.go

    	configMutators []configMutatorsFunc
    	config         pkiutil.CertConfig
    	// Used for unit tests.
    	creationTime time.Time
    }
    
    // GetConfig returns the definition for the given cert given the provided InitConfiguration
    func (k *KubeadmCert) GetConfig(ic *kubeadmapi.InitConfiguration) (*pkiutil.CertConfig, error) {
    	for _, f := range k.configMutators {
    		if err := f(ic, &k.config); err != nil {
    			return nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

        }
    
    
        static SmbTreeConnection create ( CIFSContext c ) {
            if ( c.getConfig().isTraceResourceUsage() ) {
                return new SmbTreeConnectionTrace(c);
            }
            return new SmbTreeConnection(c);
        }
    
    
        static SmbTreeConnection create ( SmbTreeConnection c ) {
            if ( c.ctx.getConfig().isTraceResourceUsage() ) {
                return new SmbTreeConnectionTrace(c);
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/context/BaseContext.java

        public SmbTransportPool getTransportPool () {
            return this.transportPool;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#getConfig()
         */
        @Override
        public Configuration getConfig () {
            return this.config;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.CIFSContext#getDfs()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 27 18:25:00 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmContext.java

                msg2,
                this.targetName,
                this.auth.isGuest() ? this.transportContext.getConfig().getGuestPassword() : this.auth.getPassword(),
                this.auth.isGuest() ? null : this.auth.getUserDomain(),
                this.auth.isGuest() ? this.transportContext.getConfig().getGuestUsername() : this.auth.getUsername(),
                this.workstation,
                this.ntlmsspFlags,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractExternalDependencyFactory.java

                property.convention(providers.of(
                        DependencyBundleValueSource.class,
                        spec -> spec.parameters(params -> {
                            params.getConfig().set(config);
                            params.getBundleName().set(name);
                        })
                ).map(dataList -> dataList.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcActionParameters.java

    /**
     * Parameters used to configure a {@link CodeNarcAction}.
     */
    public interface CodeNarcActionParameters extends AntWorkParameters {
    
        ConfigurableFileCollection getCompilationClasspath();
    
        RegularFileProperty getConfig();
    
        Property<Integer> getMaxPriority1Violations();
    
        Property<Integer> getMaxPriority2Violations();
    
        Property<Integer> getMaxPriority3Violations();
    
        ListProperty<EnabledReport> getEnabledReports();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFileInputStream.java

            if ( th.hasCapability(SmbConstants.CAP_LARGE_READX) ) {
                this.largeReadX = true;
                this.readSizeFile = Math.min(th.getConfig().getReceiveBufferSize() - 70, th.areSignaturesActive() ? 0xFFFF - 70 : 0xFFFFFF - 70);
                log.debug("Enabling LARGE_READX with " + this.readSizeFile);
            }
            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbSession.java

         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
        void close ();
    
    
        /**
         * @return the configuration used by this session
         */
        Configuration getConfig ();
    
    
        /**
         * 
         * @param type
         * @return session instance with the given type
         */
        <T extends SmbSession> T unwrap ( Class<T> type );
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_post_calibration_component.cc

      config.mutable_static_range_ptq_preset();
    
      const QuantizationConfig new_config = ExpandPresets(config);
    
      PipelineConfig pipeline_config;
      pipeline_config.set_unpack_quantized_types(unpack_quantized_types_);
    
      PostCalibrationComponent component(&ctx);
      component.AddPasses(pm, new_config.specs(), pipeline_config);
    
      if (failed(runPipeline(pm, module_op))) {
        signalPassFailure();
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top