Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 156 for GetStatus (0.44 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressOperation.java

            this.parent = parent;
        }
    
        @Override
        public String toString() {
            return String.format("id=%s, category=%s, status=%s", operationId, category, status);
        }
    
        public void setStatus(String status) {
            this.status = status;
        }
    
        public String getMessage() {
            if (GUtil.isTrue(status)) {
                return status;
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorData.groovy

    import org.testng.annotations.Test
    
    public class FailSkippedTestsListener implements ITestListener {
        void onTestStart(ITestResult result) {}
        void onTestSuccess(ITestResult result) {
            result.setStatus(ITestResult.FAILURE)
        }
        void onTestFailure(ITestResult result) {}
        void onTestSkipped(ITestResult result) {
    
        }
        void onTestFailedButWithinSuccessPercentage(ITestResult result) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuter.java

                @Override
                public TaskExecuterResult call(BuildOperationContext operationContext) {
                    TaskExecuterResult result = executeTask(operationContext);
                    operationContext.setStatus(state.getFailure() != null ? "FAILED" : state.getSkipMessage());
                    operationContext.failed(state.getFailure());
                    return result;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/aot_only_var_handle_op.cc

        if (resource->kind() == XlaResource::kVariable &&
            resource->name() == name_) {
          context->SetResourceOutput(0, resource.get());
          return;
        }
      }
      context->SetStatus(
          errors::InvalidArgument("Variable: ", name_, " not configured"));
    }
    }  // namespace
    
    REGISTER_OP(tfcompile::kXlaAotOnlyVarHandleOp)
        .Doc(R"doc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    }
                }
            }).execute()) {
    
                try (ServletOutputStream out = response.getOutputStream(); InputStream in = curlResponse.getContentAsStream()) {
                    response.setStatus(curlResponse.getHttpStatusCode());
                    writeHeaders(response);
                    final String responseContentType = curlResponse.getHeaderValue("Content-Type");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

                        throws java.io.IOException, ServletException {
    
                    if (!isMultipartRequest(request) || !request.getMethod().equals(HttpMethods.POST)) {
                        response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
                        response.getWriter().println(HttpServletResponse.SC_BAD_REQUEST);
                        HttpConnection.getCurrentConnection().getRequest().setHandled(true);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    	iop.Status = status
    	return h.getClient().Status().Update(context.TODO(), iop)
    }
    
    // setStatus sets the status for the component with the given name, which is a key in the given map.
    // If the status is InstallStatus_NONE, the component name is deleted from the map.
    // Otherwise, if the map key/value is missing, one is created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        }
    
        private Action ok() {
            new ActionSupport("return 200 ok") {
                @Override
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    response.setStatus(200)
                }
            }
        }
    
        private Action notFound() {
            new ActionSupport("return 404 not found") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

                    (new QName('http://my.extra.info2', 'bar')): extraValue.toString(),
            ]
    
            and:
            resolveArtifacts(module) {
                setStatus(status)
                expectFiles "${moduleName}-${version}.jar"
            }
    
            where:
            identifier << Identifier.all
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/Crawler.java

                        if (Constants.TRUE.equalsIgnoreCase(infoMap.get(Constants.CRAWLER_STATUS))) {
                            postcard.setStatus(Constants.OK);
                        } else {
                            postcard.setStatus(Constants.FAIL);
                        }
                        postcard.setJobname(systemProperties.getProperty("job.runtime.name", StringUtil.EMPTY));
                    });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top