Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for resort (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    == Finding out more about your project
    
    Gradle provides a report that you can run from the command-line that shows some details about the components and binaries that your project produces. To use this report, just run `gradle components`. Below is an example of running this report for one of the sample projects:
    
    === Example: The components report
    
    .Output of **`gradle components`**
    ----
    > gradle components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
                continue restart;
              }
            } else if (!ATOMIC_HELPER.casWaiters(this, curr, succ)) { // We are unlinking head
              continue restart; // We raced with an add or complete
            }
            curr = succ;
          }
          break;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              pred.next = succ;
              if (pred.thread == null) { // We raced with another node that unlinked pred. Restart.
                continue restart;
              }
            } else if (!ATOMIC_HELPER.casWaiters(this, curr, succ)) { // We are unlinking head
              continue restart; // We raced with an add or complete
            }
            curr = succ;
          }
          break;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    We strongly recommend upgrading to Gradle 4.10 first to get a report on what deprecations affect your build.
    
    The following breaking changes are not from deprecations, but the result of changes in behavior:
    
     * <<#rel5.0:pom_compile_runtime_separation,Separation of compile and runtime dependencies when consuming POMs>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dependency-insight-report-build-scan.png

    dependency-management-dependency-insight-report-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    		enableMultipart: enableMultipart,
    		creds:           u.Credentials,
    	})
    	if err != nil {
    		result.Error = err.Error()
    	}
    
    	done(nil)
    	peersLogIf(r.Context(), gob.NewEncoder(w).Encode(result))
    }
    
    // GetLastDayTierStatsHandler - returns per-tier stats in the last 24hrs for this server
    func (s *peerRESTServer) GetLastDayTierStatsHandler(_ *grid.MSS) (*DailyAllTierStats, *grid.RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	cyclesLost int64        // contention for which we weren't able to record a call stack
    	disabled   bool         // attribute all time to "lost"
    }
    
    func (prof *mLockProfile) recordLock(cycles int64, l *mutex) {
    	if cycles <= 0 {
    		return
    	}
    
    	if prof.disabled {
    		// We're experiencing contention while attempting to report contention.
    		// Make a note of its magnitude, but don't allow it to be the sole cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

        # instead of jsonPayload after extracting 'time', 'severity' and
        # 'stream' from the record.
        message ${record['log']}
        # If 'severity' is not set, assume stderr is ERROR and stdout is INFO.
        severity ${record['severity'] || if record['stream'] == 'stderr' then 'ERROR' else 'INFO' end}
      </record>
      tag ${if record['stream'] == 'stderr' then 'raw.stderr' else 'raw.stdout' end}
      remove_keys stream,log
    </match>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    		}
    		if isComparison(x.Op) {
    			// The result type is independent of operand types
    			// and the operand types must have final types.
    		} else if isShift(x.Op) {
    			// The result type depends only on lhs operand.
    			// The rhs type was updated when checking the shift.
    			check.updateExprType0(x, x.X, typ, final)
    		} else {
    			// The operand types match the result type.
    			check.updateExprType0(x, x.X, typ, final)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top