Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 195 for geterror (0.16 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java

        }
    
        public String getWhy() {
            return why;
        }
    
        public void setWhy(String why) {
            this.why = why;
        }
    
        public String getError() {
            return error;
        }
    
        public void setError(String error) {
            this.error = error;
        }
    
        public boolean isError() {
            return error == null;
        }
    
        public String getDependencyConflictId() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesExecutor.java

                    //  We need to figure out how to separate expected failure from the CC store failure.
                    ExecutionFailure result = executer.runWithFailure();
                    outputStream.write((result.getOutput() + result.getError()).getBytes());
                } else {
                    ExecutionResult result = executer.run();
                    outputStream.write(result.getOutput().getBytes());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                                edge.isResolved(),
                                edge.getTarget() == null
                                        ? null
                                        : edge.getTarget().getMd().getError());
                        MetadataGraphVertex newV = res.addVertex(newMd);
                        MetadataGraphVertex sourceV = res.addVertex(edge.getSource().getMd());
    
                        res.addEdge(sourceV, newV, edge);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         *
         * <p>You should avoid using this method as it couples the tests to a particular layout for the console. Instead use the more descriptive assertion methods.</p>
         */
        String getError();
    
        /**
         * Retrieves the first output line that contains the passed in text.
         *
         * Fails with an assertion if no output line contains the given text.
         *
         * @param text the text to match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

        }
    
        @Override
        public void execute(ExecutionResult executionResult) {
            String normalizedOutput = executionResult.getNormalizedOutput();
            String error = executionResult.getError();
            boolean executionFailure = executionResult instanceof ExecutionFailure;
    
            // for tests using rich console standard out and error are combined in output of execution result
            if (executionFailure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_pod_control_test.go

    			t.Errorf("Found unexpected non-warning event %s", events[i])
    		}
    	}
    }
    
    type fakeIndexer struct {
    	cache.Indexer
    	getError error
    }
    
    func (f *fakeIndexer) GetByKey(key string) (interface{}, bool, error) {
    	return nil, false, f.getError
    }
    
    func TestStatefulPodControlCreatePodPvcGetFailure(t *testing.T) {
    	recorder := record.NewFakeRecorder(10)
    	set := newStatefulSet(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            } else {
                resolution = matcher.group(1).trim();
            }
        }
    
        @Override
        public ExecutionFailure getIgnoreBuildSrc() {
            return new OutputScrapingExecutionFailure(getOutput(), getError(), false);
        }
    
        @Override
        public LogContent getMainContent() {
            return mainContent;
        }
    
        private Problem extract(String problem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/manager.go

    			reqClaim := lookupClaimRequest(claims, claimUID)
    			if reqClaim == nil {
    				return fmt.Errorf("NodePrepareResources returned result for unknown claim UID %s", claimUID)
    			}
    			if result.GetError() != "" {
    				return fmt.Errorf("NodePrepareResources failed for claim %s/%s: %s", reqClaim.Namespace, reqClaim.Name, result.Error)
    			}
    
    			claim := resourceClaims[types.UID(claimUID)]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                outputResult.assertHasErrorOutput(expectedOutput);
                return this;
            }
    
            @Override
            public String getError() {
                return outputResult.getError();
            }
    
            @Override
            public String getOutputLineThatContains(String text) {
                return outputResult.getOutputLineThatContains(text);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      if (absl::EndsWith(input_path, ".mlir")) {
        auto file_or_err = llvm::MemoryBuffer::getFileOrSTDIN(input_path.c_str());
        if (std::error_code error = file_or_err.getError()) {
          return tensorflow::errors::InvalidArgument(
              absl::StrCat("Could not open input file: ", input_path,
                           ", message=", error.message()));
        }
    
        // Load the MLIR module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top