Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 186 for Parses (0.13 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // license that can be found in the LICENSE file.
    
    // Package modfile implements a parser and formatter for go.mod files.
    //
    // The go.mod syntax is described in
    // https://pkg.go.dev/cmd/go/#hdr-The_go_mod_file.
    //
    // The [Parse] and [ParseLax] functions both parse a go.mod file and return an
    // abstract syntax tree. ParseLax ignores unknown statements and may be used to
    // parse go.mod files that may have been developed with newer versions of Go.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

                                 llvm::cl::desc("Enable Cluster Formation pass."),
                                 llvm::cl::init(false)};
    };
    
    // Propagates the pass manager with the passes involved in transforming or
    // optimizing an MLIR graph without any target specialization.
    // NOLINTNEXTLINE - MLIR contract is pass by mutable reference.
    void CreateTFStandardPipeline(OpPassManager& pm,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        This is useful when recursively pushing down the extra `stablehlo.transpose`
        inserted to activation tensors after running `NchwConvolutionToNhwcPass`.
    
        Currently only converts limited cases that appear in NCHW->NHWC 2D
        convolution conversion, to avoid introducing unwanted pessimizations.
      }];
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    Thai Nguyen <******@****.***> 1715313381 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. internal/config/notify/parse.go

    		if err != nil {
    			return nil, err
    		}
    
    		qosEnv := target.EnvMQTTQoS
    		if k != config.Default {
    			qosEnv = qosEnv + config.Default + k
    		}
    
    		// Parse uint8 value
    		qos, err := strconv.ParseUint(env.Get(qosEnv, kv.Get(target.MqttQoS)), 10, 8)
    		if err != nil {
    			return nil, err
    		}
    
    		topicEnv := target.EnvMQTTTopic
    		if k != config.Default {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            CommandLineParser parser = new CommandLineParser();
            FileCollectionFactory fileCollectionFactory = TestFiles.fileCollectionFactory();
            BuildEnvironmentConfigurationConverter buildEnvironmentConfigurationConverter = new BuildEnvironmentConfigurationConverter(new BuildLayoutFactory(), fileCollectionFactory);
            buildEnvironmentConfigurationConverter.configure(parser);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/cmd/trace/main.go

    		lost := parsed.size - parsed.valid
    		pct := float64(lost) / float64(parsed.size) * 100
    		log.Printf("Lost %.2f%% of the latest trace data due to error (%s of %s)", pct, byteCount(lost), byteCount(parsed.size))
    	}
    
    	log.Print("Splitting trace for viewer...")
    	ranges, err := splitTrace(parsed)
    	if err != nil {
    		logAndDie(err)
    	}
    
    	log.Printf("Opening browser. Trace viewer is listening on %s", addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                CommandLineParser parser = new CommandLineParser();
                propertiesConverter.configure(parser);
                buildLayoutConverter.configure(parser);
                loggingBuildOptions.configure(parser);
    
                parser.allowUnknownOptions();
                parser.allowMixedSubcommandsAndOptions();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            normaliseLineSeparators(e.cause.causes[0].cause.message) == "Execution failed for task ':secondTest'."
            normaliseLineSeparators(e.cause.causes[0].cause.cause.message).startsWith "There were failing tests. See the report at:"
            normaliseLineSeparators(e.cause.causes[1].cause.message) == "Execution failed for task ':test'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/clean/clean.go

    the package.
    
    The -i flag causes clean to remove the corresponding installed
    archive or binary (what 'go install' would create).
    
    The -n flag causes clean to print the remove commands it would execute,
    but not run them.
    
    The -r flag causes clean to be applied recursively to all the
    dependencies of the packages named by the import paths.
    
    The -x flag causes clean to print remove commands as it executes them.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top