Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 631 for Succeeded (0.34 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
            }
            return result
        }
    
        private ExecOutput run() {
            assert projectDir != null
            def builder = new ProcessBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/common_test.go

    			ctx = metadata.NewIncomingContext(ctx, tc.metadata)
    		}
    
    		actual, err := security.ExtractBearerToken(ctx)
    		if len(tc.extractBearerTokenErrMsg) > 0 {
    			if err == nil {
    				t.Errorf("Case %s: Succeeded. Error expected: %v", id, err)
    			} else if err.Error() != tc.extractBearerTokenErrMsg {
    				t.Errorf("Case %s: Incorrect error message: %s VS %s",
    					id, err.Error(), tc.extractBearerTokenErrMsg)
    			}
    			continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 16 02:16:57 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

    import java.io.File;
    
    public interface FileLock extends Closeable, FileAccess {
        /**
         * Returns true if the most recent mutation method ({@link #updateFile(Runnable)} or {@link #writeFile(Runnable)} attempted by any process succeeded
         * (ie a process did not crash while updating the target file).
         *
         * Returns false if no mutation method has ever been called for the target file.
         */
        boolean getUnlockedCleanly();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/io/fs/sub_test.go

    	// Test that Sub uses Open when the method is not present.
    	sub, err = Sub(openOnly{testFsys}, "sub")
    	check("openOnly", sub, err)
    
    	_, err = sub.Open("nonexist")
    	if err == nil {
    		t.Fatal("Open(nonexist): succeeded")
    	}
    	pe, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("Open(nonexist): error is %T, want *PathError", err)
    	}
    	if pe.Path != "nonexist" {
    		t.Fatalf("Open(nonexist): err.Path = %q, want %q", pe.Path, "nonexist")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      })";
      CellReader<int64_t> static_error(kNonStaticOpStreamz);
      CellReader<int64_t> skipped(kNonStaticOpSkipStreamz);
      CreateModule(kNonStaticFailure);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(static_error.Delta("mhlo.einsum"), 0);
      EXPECT_EQ(skipped.Delta("mhlo.einsum"), 1);
    }
    
    TEST_F(VerifyTfxlaLegalizationTest, SkipsNonStaticInputsWithBounds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/internal/browser/browser.go

    	}
    	cmds = append(cmds,
    		[]string{"chrome"},
    		[]string{"google-chrome"},
    		[]string{"chromium"},
    		[]string{"firefox"},
    	)
    	return cmds
    }
    
    // Open tries to open url in a browser and reports whether it succeeded.
    func Open(url string) bool {
    	for _, args := range Commands() {
    		cmd := exec.Command(args[0], append(args[1:], url)...)
    		if cmd.Start() == nil && appearsSuccessful(cmd, 3*time.Second) {
    			return true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleVersionListingResolveResult.java

     */
    public interface BuildableModuleVersionListingResolveResult extends ResourceAwareResolveResult, ErroringResolveResult<ModuleVersionResolveException> {
    
        enum State {
            /**
             * Listing has succeeded.
             */
            Listed,
            /**
             * Listing has failed.
             */
            Failed,
            /**
             * Listing hasn't been performed yet, or another attempt can be made.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. test/const7.go

    	if msg == "" {
    		// no error expected
    		if err != nil {
    			log.Fatalf("%s: compile failed unexpectedly: %v", name, err)
    		}
    		return
    	}
    
    	// error expected
    	if err == nil {
    		log.Fatalf("%s: compile succeeded unexpectedly", name)
    	}
    	if !bytes.Contains(output, []byte(msg)) {
    		log.Fatalf("%s: wrong compiler error message:\n%s\n", name, output)
    	}
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        Insert(value, constraint);
      });
    }
    
    ValuesConstraintSet &ValuesConstraintSet::Resolve() {
      llvm::SmallDenseSet<Value, 4> resolved;
      Walk([&](Value value, ValueConstraint constraint) {
        if (succeeded(IsStaticallyResolved(value, constraint)))
          resolved.insert(value);
      });
      for (Value value : resolved) constraints_.erase(value);
      return *this;
    }
    
    ValuesConstraintSet &ValuesConstraintSet::Reset() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

                     OpPassManager::Nesting::Implicit);
      pm.addPass(std::make_unique<MockSuccessPass>());
    
      pm.addInstrumentation(
          std::make_unique<ErrorCollectorInstrumentation>(&context));
      EXPECT_EQ(succeeded(pm.run(module.value().get())), true);
    
      auto collected_errors =
          ErrorCollector::GetErrorCollector()->CollectedErrors();
      EXPECT_EQ(collected_errors.size(), 0);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top