Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 654 for declareNS (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    You can declare dependencies for external tooling with the help of a <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,custom dependency configuration>>.
    This avoids polluting other contexts, such as the compilation classpath for your production source code.
    
    The following example declares a custom dependency configuration named "scm" that contains the JGit dependency:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/go/types/decl.go

    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsValid() {
    				check.errorf(m, DuplicateMethod, "method %s.%s already declared at %v", obj.Name(), m.name, alt.Pos())
    			} else {
    				check.errorf(m, DuplicateMethod, "method %s.%s already declared", obj.Name(), m.name)
    			}
    			continue
    		}
    
    		if base != nil {
    			base.AddMethod(m)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	sizeOffset := writeSecHeader(ctxt, sectionCustom)
    	writeName(ctxt.Out, "go:buildid")
    	ctxt.Out.Write(buildid)
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeTypeSec writes the section that declares all function types
    // so they can be referenced by index.
    func writeTypeSec(ctxt *ld.Link, types []*wasmFuncType) {
    	sizeOffset := writeSecHeader(ctxt, sectionType)
    
    	writeUleb128(ctxt.Out, uint64(len(types)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    		assert(m.name != "_")
    		if alt := mset.insert(m); alt != nil {
    			if alt.Pos().IsKnown() {
    				check.errorf(m.pos, DuplicateMethod, "method %s.%s already declared at %v", obj.Name(), m.name, alt.Pos())
    			} else {
    				check.errorf(m.pos, DuplicateMethod, "method %s.%s already declared", obj.Name(), m.name)
    			}
    			continue
    		}
    
    		if base != nil {
    			base.AddMethod(m)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    We can do better...
    
    ## What makes a dependency
    
    Up to now you have seen dependencies declared as functions.
    
    But that's not the only way to declare dependencies (although it would probably be the more common).
    
    The key factor is that a dependency should be a "callable".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		RunDespiteErrors bool
    		ResultType       reflect.Type
    		Requires         []*Analyzer
    		FactTypes        []Fact
    	}
    
    The Flags field declares a set of named (global) flag variables that
    control analysis behavior. Unlike vet, analysis flags are not declared
    directly in the command line FlagSet; it is up to the driver to set the
    flag variables. A driver for a single analysis, a, might expose its flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

        def "setup"() {
            buildFile << """
    @Managed
    interface SampleComponent extends ComponentSpec {
        String getVersion()
        void setVersion(String version)
    }
    """
        }
    
        def "plugin declares custom component"() {
            when:
            buildWithCustomComponentPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            create("checkModel") {
                def components = $.components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ====
    
    By default, rules declared in a project will *override* whatever is declared in settings.
    It is possible to change this default, for example to always prefer the settings rules:
    
    .Preferring rules declared in settings
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    ----
    
    === Limitations
    
    Support for declaring command line options currently comes with a few limitations.
    
    - Command line options can only be declared for custom tasks via annotation.
    There's no programmatic equivalent for defining options.
    - Options cannot be declared globally, e.g., on a project level or as part of a plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-files.md

    !!! tip
        To declare File bodies, you need to use `File`, because otherwise the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    The files will be uploaded as "form data".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top