Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 115 for getStatus (0.15 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    			if err != nil {
    				t.Fatalf("fail to create framework: %s", err)
    			}
    			_, gotStatus := f.RunPostFilterPlugins(ctx, nil, pod, nil)
    			if !reflect.DeepEqual(gotStatus, tt.wantStatus) {
    				t.Errorf("Unexpected status. got: %v, want: %v", gotStatus, tt.wantStatus)
    			}
    		})
    	}
    }
    
    func TestFilterPluginsWithNominatedPods(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param status The parameter value of status. (NotNull)
         */
        public void setStatus(String status) {
            registerVariable("status", status);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

      return XlaTensor::ToOpaquePointer(new XlaTensor());
    }
    
    void XlaDeviceAllocator::DeallocateRaw(void* ptr) {
      delete XlaTensor::FromOpaquePointer(ptr);
    }
    
    std::optional<AllocatorStats> XlaDeviceAllocator::GetStats() {
      std::optional<stream_executor::AllocatorStats> se_stats =
          stream_executor_->GetAllocatorStats();
      if (!se_stats) {
        return std::nullopt;
      }
    
      tensorflow::AllocatorStats tf_stats;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    	a.setStatus(hpa, currentReplicas, hpa.Status.DesiredReplicas, metricStatuses, false)
    }
    
    // setStatus recreates the status of the given HPA, updating the current and
    // desired replicas, as well as the metric statuses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    		score := int32(cs.Score)
    		if hairyval > bud && score <= bud {
    			return true
    		}
    		if cs.parent != nil {
    			return indirectlyDueToPromotion(cs.parent)
    		}
    		return false
    	}
    
    	genstatus := func(cs *CallSite) string {
    		hairyval := cs.Callee.Inl.Cost
    		bud, isPGO := budgetCallback(cs.Callee, profile)
    		score := int32(cs.Score)
    		st := "---"
    		expinl := false
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                        FileSystemWatchingStatistics statisticsSinceLastBuild;
                        if (watchRegistry == null) {
                            if (couldDetectUnsupportedFileSystems) {
                                context.setStatus("Starting file system watching");
                                newRoot = startWatching(currentRoot, watchMode, unsupportedFileSystems);
                            } else {
                                newRoot = currentRoot.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cmd/global-heal.go

    	for _, disk := range si.Disks {
    		setIdx := fmt.Sprintf("%d-%d", disk.PoolIndex, disk.SetIndex)
    		indexed[setIdx] = append(indexed[setIdx], disk)
    	}
    
    	for id, disks := range indexed {
    		ss := madmin.SetStatus{
    			ID:        id,
    			SetIndex:  disks[0].SetIndex,
    			PoolIndex: disks[0].PoolIndex,
    		}
    		for _, disk := range disks {
    			ss.Disks = append(ss.Disks, disk)
    			if disk.Healing {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            for (final EsAccessResult accessResult : arList) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Indexing {}", accessResult.getUrl());
                }
                accessResult.setStatus(Constants.DONE_STATUS);
                accessResultList.add(accessResult);
    
                if (accessResult.getHttpStatusCode() != 200) {
                    // invalid page
                    if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			}
    
    			gotResult, gotStatus := p.PostFilter(ctx, state, tt.pod, tt.filteredNodesStatuses)
    			// As we cannot compare two errors directly due to miss the equal method for how to compare two errors, so just need to compare the reasons.
    			if gotStatus.Code() == framework.Error {
    				if diff := cmp.Diff(tt.wantStatus.Reasons(), gotStatus.Reasons()); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

          assertThat(headersToList(response)).containsExactly("Content-Length: 0")
        }
      }
    
      @Test
      fun setStatusControlsWholeStatusLine() {
        val response = MockResponse().setStatus("HTTP/1.1 202 That'll do pig")
        assertThat(headersToList(response)).containsExactly("Content-Length: 0")
        assertThat(response.status).isEqualTo("HTTP/1.1 202 That'll do pig")
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top