Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 469 for nothings (0.24 sec)

  1. cmd/erasure-server-pool-rebalance.go

    							NoDecryption: true,
    							NoLock:       true,
    							NoAuditLog:   true,
    						})
    					if isErrObjectNotFound(err) || isErrVersionNotFound(err) {
    						// object deleted by the application, nothing to do here we move on.
    						ignore = true
    						stopFn(0, nil)
    						break
    					}
    					if err != nil {
    						failure = true
    						rebalanceLogIf(ctx, err)
    						stopFn(0, err)
    						continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     */
    @Suppress("nothing_to_inline")
    inline fun Project.defaultTasks(vararg tasks: Task) {
        defaultTasks(*tasks.map { it.name }.toTypedArray())
    }
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
     * @see [PluginAware.apply]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    _Nothing has changed._
    
    ### Removed
    _Nothing has changed._
    
    
    
    # v1.27.14
    
    
    ## Downloads for v1.27.14
    
    
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

            open fun store(): Pair<Any, State> = illegalState()
    
            open fun load(memento: Any): State {
                return Loaded(memento.uncheckedCast())
            }
    
            protected
            fun illegalState(): Nothing = throw IllegalStateException("This operation is not supported while in the ${javaClass.simpleName} state.")
    
            class Initial() : State() {
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/godebug/godebug_test.go

    		}
    	}
    	slices.Sort(have)
    
    	if !reflect.DeepEqual(have, want) {
    		t.Errorf("bad bisect output:\nhave %v\nwant %v\ncomplete output:\n%s", have, want, string(out))
    	}
    }
    
    // This test does nothing by itself, but you can run
    //
    //	bisect 'GODEBUG=buggy=1#PATTERN' go test -run='^TestBisectTestCase$'
    //
    // to see that the GODEBUG bisect support is working.
    // TestCmdBisect above does exactly that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            given:
            cacheDir.assertDoesNotExist()
    
            when:
            store.open()
    
            then:
            cacheDir.assertIsDir()
        }
    
        def "open does nothing when directory already exists"() {
            given:
            cacheDir.createDir()
    
            when:
            store.open()
    
            then:
            notThrown(RuntimeException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

     *
     * <p>This interface says nothing about thread safety, however some subtypes may be required to be thread safe.</p>
     *
     * @see ComponentGraphSpecificResolveState for dependency graph specific state for the component.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

    import org.gradle.internal.operations.OperationIdentifier;
    
    import java.util.HashSet;
    import java.util.Locale;
    import java.util.Set;
    
    /**
     * <p>This listener displays nothing unless it receives periodic {@link UpdateNowEvent} clock events.</p>
     */
    public class BuildStatusRenderer implements OutputEventListener {
        public static final int PROGRESS_BAR_WIDTH = 13;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    	// was given, unification produced the type list [int, []C, *A]. We eliminate the
    	// remaining type parameters by substituting the type parameters in this type list
    	// until nothing changes anymore.
    	inferred = u.inferred(tparams)
    	if debug {
    		for i, targ := range targs {
    			assert(targ == nil || inferred[i] == targ)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/preempt.go

    				// for them to finish.
    				//
    				// TODO: It would be nicer if we could
    				// coalesce suspends.
    				break
    			}
    
    			dumpgstatus(gp)
    			throw("invalid g status")
    
    		case _Gdead:
    			// Nothing to suspend.
    			//
    			// preemptStop may need to be cleared, but
    			// doing that here could race with goroutine
    			// reuse. Instead, goexit0 clears it.
    			return suspendGState{dead: true}
    
    		case _Gcopystack:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top