Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 337 for Result (0.1 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            return when {
                this is FirSmartCastExpression -> {
                    val result = originalExpression.toKtReceiverValue()
                    if (result != null && isStable) {
                        KaSmartCastedReceiverValue(result, smartcastType.coneType.asKtType())
                    } else {
                        result
                    }
                }
                this is FirThisReceiverExpression && this.isImplicit -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        opacity: 1;
    }
    .search-tag-desc-result {
        font-style:italic;
        font-size:11px;
    }
    .search-tag-holder-result {
        font-style:italic;
        font-size:12px;
    }
    .search-tag-result:target {
        background-color:var(--search-tag-highlight-color);
    }
    details.page-search-details {
        display: inline-block;
    }
    div#result-container {
        font-size: 1em;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. 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)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        public static void main(String[] args) {
            int result = main(args, null);
    
            System.exit(result);
        }
    
        public static int main(String[] args, ClassWorld classWorld) {
            MavenCli cli = new MavenCli();
    
            MessageUtils.systemInstall();
            MessageUtils.registerShutdownHook();
            int result = cli.doMain(new CliRequest(args, classWorld));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	action := metrics.JobSyncActionReconciling
    
    	defer func() {
    		result := "success"
    		if rErr != nil {
    			result = "error"
    		}
    
    		metrics.JobSyncDurationSeconds.WithLabelValues(completionMode, result, action).Observe(jm.clock.Since(startTime).Seconds())
    		metrics.JobSyncNum.WithLabelValues(completionMode, result, action).Inc()
    	}()
    
    	if job.Status.UncountedTerminatedPods == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

        @Override
        public NavigableSet<E> descendingSet() {
          UnmodifiableNavigableSet<E> result = descendingSet;
          if (result == null) {
            result = descendingSet = new UnmodifiableNavigableSet<>(delegate.descendingSet());
            result.descendingSet = this;
          }
          return result;
        }
    
        @Override
        public Iterator<E> descendingIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	LXVD2X (P1ptr+R17), Y2H
    	LXVD2X (P1ptr+R18), Y2L
    	LXVD2X (P1ptr+R19), Z2H
    	LXVD2X (P1ptr+R20), Z2L
    
    	VCMPEQUD SEL2, IDX, SEL1 // VCEQG SEL2, IDX, SEL1 OK
    
    	// This will result in SEL1 being all 0s or 1s, meaning
    	// the result is either X1L or X2L, no individual byte
    	// selection.
    
    	VSEL X1L, X2L, SEL1, X1L
    	VSEL X1H, X2H, SEL1, X1H
    	VSEL Y1L, Y2L, SEL1, Y1L
    	VSEL Y1H, Y2H, SEL1, Y1H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/minio-dashboard.json

          },
          "description": "",
          "fieldConfig": {
            "defaults": {
              "mappings": [
                {
                  "options": {
                    "match": "null",
                    "result": {
                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "percentage",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	}
    	result.next = nil
    	// If result.bits is not 8 byte aligned adjust index so
    	// that &result.bits[result.free] is 8 byte aligned.
    	if unsafe.Offsetof(gcBitsArena{}.bits)&7 == 0 {
    		result.free = 0
    	} else {
    		result.free = 8 - (uintptr(unsafe.Pointer(&result.bits[0])) & 7)
    	}
    	return result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	}
    	if items.Type().Kind() != reflect.Slice {
    		return nil, fmt.Errorf("unexpected Items field type: %v", items.Type().Kind())
    	}
    	result := make([]runtime.Object, items.Len())
    	for i := 0; i < items.Len(); i++ {
    		result[i] = items.Index(i).Addr().Interface().(runtime.Object)
    	}
    	return result, nil
    }
    
    func (t *Tester) testListFound(obj runtime.Object, assignFn AssignFunc) {
    	ctx := t.TestContext()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top