Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for dotdot (0.28 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go

    	"path/filepath"
    )
    
    func isAbs(path string) bool {
    	// on Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    	// though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    	return filepath.IsAbs(path) || (len(path) > 0 && (path[0] == '\\' || path[0] == '/'))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 13:03:13 UTC 2022
    - 987 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

            val results = Collections.synchronizedList(mutableListOf<Boolean>())
    
            fun doTest() {
                reporting.enterDynamicCall(this)
                latch.countDown()
                latch.await()
                results += reporting.unreportedProblemInCurrentCall(problem)
            }
    
            (1..3).map { thread { doTest() } }.forEach(Thread::join)
            assertEquals(listOf(true, true, true), results)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/syscall/zerrors_windows.go

    	EBADFD
    	EBADMSG
    	EBADR
    	EBADRQC
    	EBADSLT
    	EBFONT
    	EBUSY
    	ECANCELED
    	ECHILD
    	ECHRNG
    	ECOMM
    	ECONNABORTED
    	ECONNREFUSED
    	ECONNRESET
    	EDEADLK
    	EDEADLOCK
    	EDESTADDRREQ
    	EDOM
    	EDOTDOT
    	EDQUOT
    	EEXIST
    	EFAULT
    	EFBIG
    	EHOSTDOWN
    	EHOSTUNREACH
    	EIDRM
    	EILSEQ
    	EINPROGRESS
    	EINTR
    	EINVAL
    	EIO
    	EISCONN
    	EISDIR
    	EISNAM
    	EKEYEXPIRED
    	EKEYREJECTED
    	EKEYREVOKED
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  4. src/syscall/tables_js.go

    	"EREMOTE":         EREMOTE,
    	"ENOLINK":         ENOLINK,
    	"EADV":            EADV,
    	"ESRMNT":          ESRMNT,
    	"ECOMM":           ECOMM,
    	"EPROTO":          EPROTO,
    	"EMULTIHOP":       EMULTIHOP,
    	"EDOTDOT":         EDOTDOT,
    	"EBADMSG":         EBADMSG,
    	"EOVERFLOW":       EOVERFLOW,
    	"ENOTUNIQ":        ENOTUNIQ,
    	"EBADFD":          EBADFD,
    	"EREMCHG":         EREMCHG,
    	"ELIBACC":         ELIBACC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  5. src/cmd/internal/bootstrap_test/reboot_test.go

    	// This mimics the configuration one much have when
    	// building from distro-packaged source code
    	// (see https://go.dev/issue/54852).
    	parent := t.TempDir()
    	dotGit := filepath.Join(parent, ".git")
    	if err := os.Mkdir(dotGit, 000); err != nil {
    		t.Fatal(err)
    	}
    
    	overlayStart := time.Now()
    
    	goroot := filepath.Join(parent, "goroot")
    
    	gorootSrc := filepath.Join(goroot, "src")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

                                             /*rhsContractingDimensions=*/{0});
      return ConvertDot(
          rewriter, dot_op.getLhs(), dot_op.getRhs(), dot_dimension_numbers,
          mlir::cast<ShapedType>(dot_op.getResult().getType()), dot_op.getLoc());
    }
    
    Value ConvertDotGeneralOp(PatternRewriter& rewriter, Operation* old_op) {
      auto dot_general_op = cast<mhlo::DotGeneralOp>(old_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/run.go

    		t.setupPair(ctx, callers, echo.Services{dstInstances})
    		doTest := func(ctx framework.TestContext, fromCluster cluster.Cluster, dst echo.Instances) {
    			if gwIngress == nil {
    				ctx.Skipf("no gateway for %s", fromCluster.StableName())
    			}
    			testFn(ctx, gwIngress, dst)
    		}
    		if len(ctx.Clusters()) == 1 {
    			doTest(ctx, ctx.Clusters()[0], dstInstances)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    import org.gradle.test.fixtures.file.TestFile;
    
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.attribute.FileAttribute;
    
    import static com.tngtech.archunit.base.DescribedPredicate.doNot;
    import static com.tngtech.archunit.core.domain.Formatters.ensureSimpleName;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.belongToAnyOf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/traffic.go

    				doTest(t, src, dsts)
    			})
    		} else if c.viaIngress {
    			echoT.RunViaIngress(func(t framework.TestContext, from ingress.Instance, to echo.Target) {
    				doTest(t, from, echo.Services{to.Instances()})
    			})
    		} else {
    			echoT.Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    				doTest(t, from, echo.Services{to.Instances()})
    			})
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/net/url/example_test.go

    }
    
    func ExampleURL_ResolveReference() {
    	u, err := url.Parse("../../..//search?q=dotnet")
    	if err != nil {
    		log.Fatal(err)
    	}
    	base, err := url.Parse("http://example.com/directory/")
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Println(base.ResolveReference(u))
    	// Output:
    	// http://example.com/search?q=dotnet
    }
    
    func ExampleParseQuery() {
    	m, err := url.ParseQuery(`x=1&y=2&y=3`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
Back to top