Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,097 for Creation (0.15 sec)

  1. platforms/documentation/docs/src/snippets/java/customConfs-creation/tests/customConfs-creation.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  2. releasenotes/notes/istioctl-sort-events-by-creation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 155 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start_windows.go

    }
    
    func daemonizeWindows(cmd *exec.Cmd) {
    	// Set DETACHED_PROCESS creation flag so that closing
    	// the console window the parent process was run in
    	// does not kill the child.
    	// See documentation of creation flags in the Microsoft documentation:
    	// https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.DETACHED_PROCESS,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 732 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskOverwritingIntegrationTest.groovy

            result.output.count("Lazy 1 :myTask") == 1
            result.output.count("Lazy 2 :myTask") == 1
            result.output.count("Configure :myTask") == 1
        }
    
        def "cannot overwrite a lazy task creation with a eager task creation with a different type"() {
            buildFile << '''
                class MyTask extends DefaultTask {}
                def myTask = tasks.register("myTask", SomeTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	// (see x/telemetry/start_windows.go) The console creation behavior when
    	// a parent is a console process without console is not clearly documented
    	// but empirically we observed the new console is created and attached to the
    	// subprocess in the default setup.
    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. pkg/controller/job/metrics/metrics.go

    	// JobSyncActionReconciling when the Job's pod creation/deletion expectations
    	// are unsatisfied and the controller is waiting for issued Pod
    	// creation/deletions to complete.
    	JobSyncActionReconciling = "reconciling"
    	// JobSyncActionTracking when the Job's pod creation/deletion expectations
    	// are satisfied and the number of active Pods matches expectations (i.e. no
    	// pod creation/deletions issued in this sync). This is expected to be the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                      description: error is the last observed error during snapshot creation,
                        if any. Upon success after retry, this error field will be cleared.
                      properties:
                        message:
                          description: 'message is a string detailing the encountered error
                          during snapshot creation if specified. NOTE: message may be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/metrics/metrics.go

    */
    
    package metrics
    
    import (
    	"sync"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    // ResourceClaimSubsystem - subsystem name used for ResourceClaim creation
    const ResourceClaimSubsystem = "resourceclaim_controller"
    
    var (
    	// ResourceClaimCreateAttempts tracks the number of
    	// ResourceClaims().Create calls (both successful and unsuccessful)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:23:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                        gRPC call if the driver supports it. If not specified, it may indicate
                        that the creation time of the snapshot is unknown.
                      format: date-time
                      type: string
                    error:
                      description: error is the last observed error during snapshot creation,
                        if any. This field could be helpful to upper level controllers(i.e.,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

         * Locates a task by name and type, without triggering its creation or configuration, failing if there is no such task.
         *
         * @see [TaskContainer.named]
         */
        operator fun <U : Task> String.invoke(type: KClass<U>): TaskProvider<U> =
            container.named(this, type)
    }
    
    
    /**
     * Locates a task by name and type, without triggering its creation or configuration, failing if there is no such task.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top