Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,104 for stay (0.13 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/transforms/order_by_dialect.cc

    std::vector<Operation*> groupOperationsByDialect(Block& block);
    
    #define GEN_PASS_DEF_ORDERBYDIALECTPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Reorder operations so that consecutive ops stay in the same dialect, as far
    // as possible. This is to optimize the op order for the group-by-dialect pass,
    // which factors consecutive same-dialect ops into functions.
    class OrderByDialectPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. 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)
  6. tests/integration/security/egress_sidecar_tls_origination_test.go

    						StatusCode: http.StatusOK,
    					},
    				},
    				// Mutual TLS origination from an unauthorized sidecar to https endpoint
    				// This will result in a 503 with the UH flag because the cluster will
    				// stay warming until a valid secret is sent.
    				{
    					name:            "unauthorized sidecar",
    					credentialToUse: credNameGeneric,
    					from:            apps.Ns1.B,
    					drSelector:      "b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. 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)
  8. tests/integration/security/reachability_test.go

    					// EndpointSlice's for VMs this might work.
    					toMatch:    match.And(match.NotVM, notMigration),
    					expectMTLS: notNaked,
    					// Since we are doing pass-through, all requests will stay in the same cluster,
    					// as we are bypassing Istio load balancing.
    					// TODO(https://github.com/istio/istio/issues/39700): Why does headless behave differently?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. pkg/volume/metrics_du_test.go

    		t.Errorf("Unexpected Used for directory with file.  Expected %v, got %d.", e, a)
    	}
    
    	// create a hardlink and expect inodes count to stay the same
    	previousInodes := actual.InodesUsed.Value()
    	err = os.Link(filepath.Join(tmpDir, "f1"), filepath.Join(tmpDir, "f2"))
    	if err != nil {
    		t.Errorf("Unexpected error when creating hard link %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/runtime/cgo_sigaction.go

    		case sp < g.stack.lo || sp >= g.stack.hi:
    			// We're no longer on g's stack, so we must be handling a signal.  It's
    			// possible that we interrupted the thread during a transition between g
    			// and g0, so we should stay on the current stack to avoid corrupting g0.
    			ret = callCgoSigaction(uintptr(sig), new, old)
    		default:
    			// We're running on g's stack, so either we're not in a signal handler or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top