Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 478 for prefers (0.99 sec)

  1. src/cmd/go/internal/modload/query.go

    // The allowed function (which may be nil) is used to filter out unsuitable
    // versions (see AllowedFunc documentation for details). If the query refers to
    // a specific revision (for example, "master"; see IsRevisionQuery), and the
    // revision is disallowed by allowed, Query returns the error. If the query
    // does not refer to a specific revision (for example, "latest"), Query
    // acts as if versions disallowed by allowed do not exist.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/initorder.go

    		check.errorf(obj, InvalidInitCycle, "initialization cycle: %s refers to itself", obj.Name())
    		return
    	}
    
    	err := check.newError(InvalidInitCycle)
    	err.addf(obj, "initialization cycle for %s", obj.Name())
    	// subtle loop: print cycle[i] for i = 0, n-1, n-2, ... 1 for len(cycle) = n
    	for i := len(cycle) - 1; i >= 0; i-- {
    		err.addf(obj, "%s refers to", obj.Name())
    		obj = cycle[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/go/types/initorder.go

    		check.errorf(obj, InvalidInitCycle, "initialization cycle: %s refers to itself", obj.Name())
    		return
    	}
    
    	err := check.newError(InvalidInitCycle)
    	err.addf(obj, "initialization cycle for %s", obj.Name())
    	// subtle loop: print cycle[i] for i = 0, n-1, n-2, ... 1 for len(cycle) = n
    	for i := len(cycle) - 1; i >= 0; i-- {
    		err.addf(obj, "%s refers to", obj.Name())
    		obj = cycle[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbResource.java

    
        /**
         * Tests to see if the SMB resource exists. If the resource refers
         * only to a server, this method determines if the server exists on the
         * network and is advertising SMB services. If this resource refers to
         * a workgroup, this method determines if the workgroup name is valid on
         * the local SMB network. If this <code>SmbResource</code> refers to the root
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    3. *Local or Custom Plugins* - plugins that you develop yourself.
    
    === Core Plugins
    The term *core plugin* refers to a plugin that is part of the Gradle distribution such as the <<java_library_plugin.adoc#java_library_plugin,Java Library Plugin>>.
    They are always available.
    
    === Community Plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="6  12-13"
        {!> ../../../docs_src/settings/app02_an/main.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="5  11-12"
        {!> ../../../docs_src/settings/app02/main.py!}
        ```
    
    !!! tip
        We'll discuss the `@lru_cache` in a bit.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/server_test.go

    			alpns:            []string{"h2"},
    		},
    		{
    			name:             "prefer h2",
    			probePath:        "app-health/hello-world/readyz",
    			statusCode:       http.StatusOK,
    			expectedProtocol: "HTTP/2.0",
    			alpns:            []string{"h2", "http/1.1"},
    		},
    		{
    			name:             "prefer h1",
    			probePath:        "app-health/hello-world/readyz",
    			statusCode:       http.StatusOK,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/edit.go

    These flags are mainly for tools that understand the module graph.
    Users should prefer 'go get path@version' or 'go get path@none',
    which make other go.mod adjustments as needed to satisfy
    constraints imposed by other modules.
    
    The -go=version flag sets the expected Go language version.
    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get go@version'.
    
    The -toolchain=version flag sets the Go toolchain to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. fastapi/openapi/docs.py

        if oauth2_redirect_url:
            html += f"oauth2RedirectUrl: window.location.origin + '{oauth2_redirect_url}',"
    
        html += """
        presets: [
            SwaggerUIBundle.presets.apis,
            SwaggerUIBundle.SwaggerUIStandalonePreset
            ],
        })"""
    
        if init_oauth:
            html += f"""
            ui.initOAuth({json.dumps(jsonable_encoder(init_oauth))})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/query.go

    	// packages matching the query but for which the module path itself
    	// matches the query pattern.
    	//
    	// We track this module separately from pkgMods because, all else equal, we
    	// prefer to match a query to a package rather than just a module. Also,
    	// unlike the modules in pkgMods, this module does not inherently exclude
    	// any other module in pkgMods.
    	mod module.Version
    
    	err error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top