Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for customFile (0.15 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

                    }
                }
            }
            '''
    
            expect:
            run 'run'
        }
    
    
        def "can customize application name"() {
            file('build.gradle') << '''
    application.applicationName = 'mega-app'
    '''
            file('src/main/java/org/gradle/test/Main.java') << '''
    package org.gradle.test;
    
    class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/generate-clients.md

    ### Custom Generate Unique ID Function
    
    FastAPI uses a **unique ID** for each *path operation*, it is used for the **operation ID** and also for the names of any needed custom models, for requests or responses.
    
    You can customize that function. It takes an `APIRoute` and outputs a string.
    
    For example, here it is using the first tag (you will probably have only one tag) and the *path operation* name (the function name).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    	// The build, tool, and release tags specify build constraints
    	// that should be considered satisfied when processing +build lines.
    	// Clients creating a new context may customize BuildTags, which
    	// defaults to empty, but it is usually an error to customize ToolTags or ReleaseTags.
    	// ToolTags defaults to build tags appropriate to the current Go toolchain configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    However, similar to Java's annotation processing, there are various ways to https://melix.github.io/blog/2011/05/12/customizing_groovy_compilation_process.html[customize the Groovy compilation process], for which implementation details matter.
    Some well-known examples are https://groovy-lang.org/metaprogramming.html#_code_generation_transformations[Groovy AST transformations].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

      auto type = RankedTensorType::get(shape, elt_type);
    
    #define CONVERT_FLAT(DTYPE, CTYPE) \
      case DTYPE:                      \
        return ConvertFlatTensor<CTYPE>(input_tensor, type);
    
      // TODO(fengliuai): customize the conversions for quantized types.
      switch (input_dtype) {
        CONVERT_FLAT(DT_BOOL, bool)
        CONVERT_FLAT(DT_FLOAT, float)
        CONVERT_FLAT(DT_DOUBLE, double)
        CONVERT_FLAT(DT_INT8, int8)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/parse.go

    	Position
    	Blocks []Block
    	Links  map[string]*Link
    }
    
    // A Parser is a Markdown parser.
    // The exported fields in the struct can be filled in before calling
    // [Parser.Parse] in order to customize the details of the parsing process.
    // A Parser is safe for concurrent use by multiple goroutines.
    type Parser struct {
    	// HeadingIDs determines whether the parser accepts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    diagnostics vary widely among users. The design of this framework does
    not hold each Analyzer responsible for identifying the severity of its
    diagnostics. Instead, we expect that drivers will allow the user to
    customize the filtering and prioritization of diagnostics based on the
    producing Analyzer and optional Category, according to the user's
    preferences.
    
    Most Analyzers inspect typed Go syntax trees, but a few, such as asmdecl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    The task that produces the development binary is attached to `assemble`.
    By default, the development binary is the debug variant.
    
    The rest of the chapter explains the different ways to customize the build to your requirements when building libraries and applications.
    
    // TODO Split this to put in common with the C++
    [[sec:introducing_build_variants-swift]]
    == Introducing build variants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/encoding/csv/reader.go

    }
    
    // A Reader reads records from a CSV-encoded file.
    //
    // As returned by [NewReader], a Reader expects input conforming to RFC 4180.
    // The exported fields can be changed to customize the details before the
    // first call to [Reader.Read] or [Reader.ReadAll].
    //
    // The Reader converts all \r\n sequences in its input to plain \n,
    // including in multiline field values, so that the returned data does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. fastapi/security/oauth2.py

            )
    
    
    class OAuth2(SecurityBase):
        """
        This is the base class for OAuth2 authentication, an instance of it would be used
        as a dependency. All other OAuth2 classes inherit from it and customize it for
        each OAuth2 flow.
    
        You normally would not create a new class inheriting from it but use one of the
        existing subclasses, and maybe compose them if you want to support multiple flows.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top