Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for stay (0.04 sec)

  1. tensorflow/c/eager/graph_function.h

    // Thin wrapper around a FunctionDef.
    class GraphFunction : public AbstractFunction {
     public:
      explicit GraphFunction(FunctionDef fdef);
      ~GraphFunction() override;
    
      // GraphFunction maybe stay alive for the duration of the returned
      // FunctionDef.
      Status GetFunctionDef(const FunctionDef** fdef) override;
    
      // Returns a shared reference to the wrapped function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/register.go

    	return SchemeGroupVersion.WithResource(resource).GroupResource()
    }
    
    // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/register.go

    var ConfigSchemeGroupVersion = schema.GroupVersion{Group: ConfigGroupName, Version: "v1beta1"}
    
    var (
    	// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
    	// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
    	SchemeBuilder      runtime.SchemeBuilder
    	localSchemeBuilder = &SchemeBuilder
    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    }
    
    // NewCRDRegistrationController returns a controller which will register CRD GroupVersions with the auto APIService registration
    // controller so they automatically stay in sync.
    func NewCRDRegistrationController(crdinformer crdinformers.CustomResourceDefinitionInformer, apiServiceRegistration AutoAPIServiceRegistration) *crdRegistrationController {
    	c := &crdRegistrationController{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/CachedKotlinTaskExecutionIntegrationTest.groovy

                        isPush = true
                    }
                }
            """
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @LeaksFileHandles
        def "tasks stay cached after buildSrc with custom Kotlin task is rebuilt"() {
            withKotlinBuildSrc()
            file("buildSrc/src/main/kotlin/CustomTask.kt") << customKotlinTask()
            file("input.txt") << "input"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

    labels: [ "a:bug", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
            If you need help with Gradle or have a usage question, please reach [our community](http://help.gradle.org/) instead of creating an issue.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceDatabase.java

    import javax.sql.DataSource;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.Arrays;
    import java.util.List;
    
    public class PerformanceDatabase {
        // This value specifies that a DB connection will stay at pool for at most 30 seconds
        private static final int MAX_LIFETIME_MS = 30 * 1000;
        private static final String PERFORMANCE_DB_URL_PROPERTY_NAME = "org.gradle.performance.db.url";
        private final String databaseName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/version.go

    	// The semantics of the go.mod changed at Go 1.17 to support
    	// graph pruning. If see a go.mod without a go line, we have to
    	// assume Go 1.16 so that we interpret the requirements correctly.
    	// Note that this default must stay at Go 1.16; it cannot be moved forward.
    	DefaultGoModVersion = "1.16"
    
    	// DefaultGoWorkVersion is the Go version to assume for go.work files
    	// that do not declare a Go version. Workspaces were added in Go 1.18,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. README.md

    * [Building Swift Libraries](https://docs.gradle.org/current/samples/sample_building_swift_libraries.html)
    * [Creating Build Scans](https://scans.gradle.com/)
    
    ## Stay in Flow
    Enjoy first-class Gradle support in your IDE of choice.
    
    * [Android Studio](https://developer.android.com/studio/build/index.html)
    * [Eclipse](https://www.vogella.com/tutorials/EclipseGradle/article.html)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/names/controller_names.go

    //     3.2. when defined flag's help mentions a controller name
    //  4. defining a new service account for a new controller (old controllers may have inconsistent service accounts to stay backwards compatible)
    const (
    	ServiceAccountTokenController                = "serviceaccount-token-controller"
    	EndpointsController                          = "endpoints-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top