Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for GetStatus (0.19 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
            try {
                final PingResponse pingResponse = searchEngineClient.ping();
                writeJsonResponse(pingResponse.getStatus() == 0 ? HttpServletResponse.SC_OK : HttpServletResponse.SC_SERVICE_UNAVAILABLE,
                        "\"data\":" + pingResponse.getMessage());
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void setVersion(Object version) {
            this.version = version;
        }
    
        @Override
        public Object getStatus() {
            return getInternalStatus().get();
        }
    
        @Override
        public void setStatus(Object s) {
            getInternalStatus().set(s);
        }
    
        @Override
        public Property<Object> getInternalStatus() {
            if (status == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server.go

    			default:
    				log.Errorf("grpc probe failed: %v", err)
    			}
    		} else {
    			log.Errorf("grpc probe failed: %v", err)
    		}
    		w.WriteHeader(http.StatusInternalServerError)
    		return
    	}
    
    	if resp.GetStatus() == grpcHealth.HealthCheckResponse_SERVING {
    		w.WriteHeader(http.StatusOK)
    		return
    	}
    	w.WriteHeader(http.StatusInternalServerError)
    }
    
    func (s *Server) handleNdsz(w http.ResponseWriter, r *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                DistributionManagement distMgmt = m.getDistributionManagement();
                if (distMgmt != null) {
                    if (distMgmt.getStatus() != null) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
    
                DistributionManagement distMgmt = m.getDistributionManagement();
                if (distMgmt != null) {
                    if (distMgmt.getStatus() != null) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

                    // make sure that the handle is closed when one of the requests fails
                    Smb2CreateResponse createResp = cr.getResponse();
                    if ( createResp.isReceived() && createResp.getStatus() == NtStatus.NT_STATUS_OK ) {
                        th.send(new Smb2CloseRequest(th.getConfig(), createResp.getFileId()), RequestParam.NO_RETRY);
                    }
                }
                catch ( Exception e2 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return The status of this project. Never returns null.
         */
        Object getStatus();
    
        /**
         * Sets the status of this project.
         *
         * @param status The status. Must not be null.
         */
        void setStatus(Object status);
    
        /**
         * <p>Returns the direct children of this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    		return x.Services
    	}
    	return nil
    }
    
    func (x *Workload) GetAuthorizationPolicies() []string {
    	if x != nil {
    		return x.AuthorizationPolicies
    	}
    	return nil
    }
    
    func (x *Workload) GetStatus() WorkloadStatus {
    	if x != nil {
    		return x.Status
    	}
    	return WorkloadStatus_HEALTHY
    }
    
    func (x *Workload) GetClusterId() string {
    	if x != nil {
    		return x.ClusterId
    	}
    	return ""
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getState()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getStatus()> does not have raw return type assignable to org.gradle.api.provider.Property in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			failed := int32(len(failedPods)) + tc.job.Status.Failed + int32(len(uncounted.failed))
    			if succeeded != tc.wantSucceeded {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", succeeded, tc.wantSucceeded)
    			}
    			if failed != tc.wantFailed {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", failed, tc.wantFailed)
    			}
    		})
    	}
    }
    
    func TestTrackJobStatusAndRemoveFinalizers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top