Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 493 for place (0.09 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

                if (toBeSelected != null) {
                    select(toBeSelected)
                }
                because("use slf4j in place of log4j")
            }
        }
        // end::use_slf4j[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/bug_report.yml

          placeholder: |
            $ istioctl version
            client version: 1.0.0
            control plane version: 1.0.0
            data plane version: 1.0.0 (100 proxies)
            $ kubectl version
            Client Version: v1.0.0
            Kustomize Version: v1.0.0
            Server Version: v1.0.0
          render: Text
        validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

     */
    
    package org.gradle.internal.resource;
    
    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_dataclasses/test_tutorial002.py

    def test_get_item():
        response = client.get("/items/next")
        assert response.status_code == 200
        assert response.json() == {
            "name": "Island In The Moon",
            "price": 12.99,
            "description": "A place to be be playin' and havin' fun",
            "tags": ["breater"],
            "tax": None,
        }
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 04 20:47:07 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/v1/register.go

    	// AddToScheme adds api to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(RegisterDefaults)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. internal/http/response-recorder.go

    		// ... otherwise we return the <GZIP> place holder
    		return gzippedBody
    	}
    	// If there was an error response or body logging is enabled
    	// then we return the body contents
    	if (lrw.LogErrBody && lrw.StatusCode >= http.StatusBadRequest) || lrw.LogAllBody {
    		return lrw.body.Bytes()
    	}
    	// ... otherwise we return the <BLOB> place holder
    	return blobBody
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/Contextual.java

    /**
     * This annotation is attached to an exception class to indicate that it provides contextual information about the
     * exception which might help the user determine what the failed operation was, or where it took place. Generally, this
     * annotation is only attached to exceptions which chain lower-level exceptions.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface Contextual {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableFileSpec.java

    import org.gradle.api.Incubating;
    import org.gradle.model.internal.core.UnmanagedStruct;
    import org.gradle.nativeplatform.toolchain.NativeToolChain;
    
    import java.io.File;
    
    /**
     * Specifies how to build and where to place a native executable file.
     *
     * <p>TODO:HH resolve naming conflict with existing NativeExecutableSpec</p>
     */
    @Incubating @UnmanagedStruct
    public class NativeExecutableFileSpec {
    
        private File file;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUVariableRuntimeReformattingPass();
    
    // Creates a pass that merges device variable reads/updates into the surrounded
    // TPUExecute node. This allows the execute node to perform in-place variable
    // updates.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUMergeVariablesWithExecutePass();
    
    #define GEN_PASS_REGISTRATION
    #define GEN_PASS_DECL_TPUMERGEVARIABLESWITHEXECUTEPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/groovy/build.gradle

                if (toBeSelected != null) {
                    select(toBeSelected)
                }
                because 'use slf4j in place of log4j'
            }
        }
        // end::use_slf4j[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top