Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for Forked (0.19 sec)

  1. pkg/kube/kclient/client_test.go

    			handled.Inc()
    		},
    	})
    	c.RunAndWait(test.NewStop(t))
    	retry.UntilOrFail(t, deployments.HasSynced, retry.Timeout(time.Second*2), retry.Delay(time.Millisecond))
    	// This checks sync worked properly. This MUST be immediately available, not eventually
    	assert.Equal(t, handled.Load(), 1)
    }
    
    func TestClient(t *testing.T) {
    	tracker := assert.NewTracker[string](t)
    	c := kube.NewFakeClient()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public boolean isRerunTasks() {
            return rerunTasks;
        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public void setRerunTasks(boolean rerunTasks) {
            this.rerunTasks = rerunTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/os/exec.go

    // specified by name, argv and attr. The argv slice will become [os.Args] in the
    // new process, so it normally starts with the program name.
    //
    // If the calling goroutine has locked the operating system thread
    // with [runtime.LockOSThread] and modified any inheritable OS-level
    // thread state (for example, Linux or Plan 9 name spaces), the new
    // process will inherit the caller's thread state.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

        private
        lateinit var host: Host
    
        private
        val loadedSideEffects = mutableListOf<BuildTreeModelSideEffect>()
    
        private
        val store by lazy { cacheRepository.forKey(cacheKey.string) }
    
        private
        val lazyBuildTreeModelSideEffects = lazy { BuildTreeModelSideEffectStore(host, cacheIO, store) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. cmd/storage-datatypes.go

    	if fi.Deleted {
    		return "delete-marker"
    	}
    	if fi.XLV1 && fi.DataDir == "" {
    		return "legacy"
    	}
    	return fi.DataDir
    }
    
    // IsCompressed returns true if the object is marked as compressed.
    func (fi FileInfo) IsCompressed() bool {
    	_, ok := fi.Metadata[ReservedMetadataPrefix+"compression"]
    	return ok
    }
    
    // InlineData returns true if object contents are inlined alongside its metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        private String executeLifecycle;
    
        /**
         * Description with reason of Mojo deprecation. Similar to Javadoc {@code @deprecated}.
         * This will trigger a warning when a user tries to use a Mojo marked as deprecated.
         */
        private String deprecated;
    
        /**
         * Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects listed as
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    	// Due to the larger time, it is still possible that connection errors will occur while
    	// CDS is updated.
    	ServiceAccounts sets.String
    }
    
    // Keys gives a sorted list of keys for EndpointShards.Shards.
    // Calls to Keys should be guarded with a lock on the EndpointShards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    	scheduled   bool  // Values in Blocks are in final order
    	laidout     bool  // Blocks are ordered
    	NoSplit     bool  // true if function is marked as nosplit.  Used by schedule check pass.
    	dumpFileSeq uint8 // the sequence numbers of dump file. (%s_%02d__%s.dump", funcname, dumpFileSeq, phaseName)
    	IsPgoHot    bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. cmd/xl-storage-disk-id-check.go

    					p.health.logSuccess()
    				}
    			}
    			si(sz, errp)
    		})
    	}, nil
    }
    
    var toWrite = []byte{2048: 42}
    
    // monitorDiskStatus should be called once when a drive has been marked offline.
    // Once the disk has been deemed ok, it will return to online status.
    func (p *xlStorageDiskIDCheck) monitorDiskStatus(spent time.Duration, fn string) {
    	t := time.NewTicker(5 * time.Second)
    	defer t.Stop()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. chainable_api.go

    // By default, GORM uses soft deletion, marking records as "deleted"
    // by setting a timestamp on a specific field (e.g., `deleted_at`).
    // Unscoped allows queries to include records marked as deleted,
    // overriding the soft deletion behavior.
    // Example:
    //    var users []User
    //    db.Unscoped().Find(&users)
    //    // Retrieves all users, including deleted ones.
    func (db *DB) Unscoped() (tx *DB) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top