Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for getStatus (0.18 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            }
    
            @Override
            public void applyTo(DaemonParameters settings, Origin origin) {
                settings.setStatus(true);
            }
        }
    
        public static class PriorityOption extends StringBuildOption<DaemonParameters> {
            public static final String GRADLE_PROPERTY = "org.gradle.priority";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            return stop;
        }
    
        public void setStop(boolean stop) {
            this.stop = stop;
        }
    
        public boolean isStatus() {
            return status;
        }
    
        public void setStatus(boolean status) {
            this.status = status;
        }
    
        public Map<String, String> getEnvironmentVariables() {
            return envVariables;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/GcsServer.groovy

                    httpStub.response?.headers?.each {
                        response.addHeader(it.key, it.value instanceof Closure ? it.value.call().toString() : it.value.toString())
                    }
                    response.setStatus(httpStub.response.status)
                    if (httpStub.response?.body) {
                        response.outputStream.bytes = httpStub.response.body.call()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    			}
    
    			t.Logf("Verify: call Filter and check status")
    			for i, nodeInfo := range nodeInfos {
    				gotStatus := p.Filter(ctx, state, item.pod, nodeInfo)
    				assert.Equal(t, item.wantFilterStatus[i], gotStatus)
    			}
    
    			t.Logf("Verify: call PreScore and check status")
    			gotPreScoreStatus := p.PreScore(ctx, state, item.pod, tf.BuildNodeInfos(item.nodes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                    httpStub.response?.headers?.each {
                        response.addHeader(it.key, it.value instanceof Closure ? it.value.call().toString() : it.value.toString())
                    }
                    response.setStatus(httpStub.response.status)
                    if (httpStub.response?.body) {
                        response.outputStream.bytes = httpStub.response.body.call()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top