Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 456 for utiliza (0.18 sec)

  1. platforms/documentation/docs/src/samples/templates/precompiled-script-plugin-utils/src/main/java/com/example/CheckstyleUtil.java

    package com.example;
    
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.nio.charset.StandardCharsets;
    
    /**
     * Utility class for extracting the checkstyle.xml used by other plugins
     */
    public abstract class CheckstyleUtil {
        public static String getCheckstyleConfig(String resourcePath) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 814 bytes
    - Viewed (0)
  2. pkg/test/framework/components/authz/server.go

    func NewLocalOrFail(t framework.TestContext, ns namespace.Instance) Server {
    	t.Helper()
    	s, err := NewLocal(t, ns)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    }
    
    // Setup is a utility function for configuring a global authz Server.
    func Setup(server *Server, ns namespace.Getter) resource.SetupFn {
    	if ns == nil {
    		ns = namespace.NilGetter
    	}
    
    	return func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 14 23:39:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

    // `max_iterations` are reached. Returns failure if resource ops decomposition
    // does not converge after `max_iterations`.
    // TODO(prakalps): This can be useful to a lot of other passes in bridge.
    // Extract out as a separate utility.
    LogicalResult ApplyPatternsLocallyUntilConverged(
        Operation* op_with_regions, FrozenRewritePatternSet& patterns,
        int max_iterations) {
      bool changed = true;
      int iteration = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Contains Gradle utility classes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 686 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/build.gradle.kts

            dir(file("libs"))  // <1>
        }
    }
    
    dependencies {
        implementation(files("libs/our-custom.jar"))  // <2>
        implementation(":awesome-framework:2.0")     // <3>
        implementation(":utility-library:1.0")  // <3>
    }
    // end::file-deps[]
    
    // tag::retrieve-deps[]
    tasks.register<Copy>("retrieveRuntimeDependencies") {
        into(layout.buildDirectory.dir("libs"))
        from(configurations.runtimeClasspath)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 894 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/build.gradle

            name = 'libs dir'
            dir file('libs')  // <1>
        }
    }
    
    dependencies {
        implementation files('libs/our-custom.jar')  // <2>
        implementation ':awesome-framework:2.0'  // <3>
        implementation ':utility-library:1.0'  // <3>
    }
    // end::file-deps[]
    
    // tag::retrieve-deps[]
    tasks.register('retrieveRuntimeDependencies', Copy) {
        into layout.buildDirectory.dir('libs')
        from configurations.runtimeClasspath
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 855 bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/body.md

    Votre API aura presque toujours à envoyer un corps de **réponse**. Mais un client n'a pas toujours à envoyer un corps de **requête**.
    
    Pour déclarer un corps de **requête**, on utilise les modèles de <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> en profitant de tous leurs avantages et fonctionnalités.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Contains Gradle utility classes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 686 bytes
    - Viewed (0)
  9. docs/es/docs/advanced/response-headers.md

    ```Python hl_lines="10-12"
    {!../../../docs_src/response_headers/tutorial001.py!}
    ```
    
    !!! note "Detalles Técnicos"
        También podrías utilizar `from starlette.responses import Response` o `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 12:51:12 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pkg/probe/http/http.go

    	res, err := client.Do(req)
    	if err != nil {
    		// Convert errors into failures to catch timeouts.
    		return probe.Failure, err.Error(), nil
    	}
    	defer res.Body.Close()
    	b, err := utilio.ReadAtMost(res.Body, maxRespBodyLength)
    	if err != nil {
    		if err == utilio.ErrLimitReached {
    			klog.V(4).Infof("Non fatal body truncation for %s, Response: %v", url.String(), *res)
    		} else {
    			return probe.Failure, "", err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 00:37:32 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top