Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 119 for WEIRD (0.04 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                    exists()
                }
                dependency("org.test:foo:1.0") {
                    exists()
                }
                noMoreDependencies()
            }
        }
    
        // This is a weird test case, because why would you have a substitution rule
        // for a first level dependency? However it may be that you implicitly get a
        // substitution rule (via a plugin for example) that you are not aware of.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/AbstractBaseGraph.java

            throw new UnsupportedOperationException();
          }
    
          // Mostly safe: We check contains(u) before calling successors(u), so we perform unsafe
          // operations only in weird cases like checking for an EndpointPair<ArrayList> in a
          // Graph<LinkedList>.
          @SuppressWarnings("unchecked")
          @Override
          public boolean contains(@CheckForNull Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    	resources := make(model.Resources, 0)
    	reqAddresses := addresses
    	if full {
    		reqAddresses = nil
    	}
    	addrs, removed := e.Server.Env.ServiceDiscovery.AddressInformation(reqAddresses)
    	// Note: while "removed" is a weird name for a resource that never existed, this is how the spec works:
    	// https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#id2
    	have := sets.New[string]()
    	haveAliases := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

        ): Collection<KaSymbol> {
            // If the cursor position is on the label of `super`, we want to resolve to the current class. FIR represents `super` as
            // accessing the `super` property on `this`, hence this weird looking if condition. In addition, the current class type is available
            // from the dispatch receiver `this`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              sudo sh -c 'echo PROV_CERT=/var/run/secrets/istio >> /var/lib/istio/envoy/cluster.env'
              sudo sh -c 'echo OUTPUT_CERTS=/var/run/secrets/istio >> /var/lib/istio/envoy/cluster.env'
    
              # This looks weird but Kubernetes escapes $$ to $; we want double dollar sign for current PID
              pid="$$$$"
    
              # Run the pilot agent and Envoy
              # TODO: run with systemctl?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows.go

    	if len(exts) == 0 {
    		return file, chkStat(file)
    	}
    	if hasExt(file) {
    		if chkStat(file) == nil {
    			return file, nil
    		}
    		// Keep checking exts below, so that programs with weird names
    		// like "foo.bat.exe" will resolve instead of failing.
    	}
    	for _, e := range exts {
    		if f := file + e; chkStat(f) == nil {
    			return f, nil
    		}
    	}
    	if hasExt(file) {
    		return "", fs.ErrNotExist
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    	"...":                     "..",
    	".net":                    ".net",
    	".net.":                   ".net",
    	"a..":                     "a.",
    	"b.a..":                   "b.a.",
    	"weird.stuff...":          "weird.stuff..",
    	"[bad.unmatched.bracket:": "error",
    }
    
    func TestCanonicalHost(t *testing.T) {
    	for h, want := range canonicalHostTests {
    		got, err := canonicalHost(h)
    		if want == "error" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/SimpleTimeLimiter.java

          cause.setStackTrace(combined);
        }
        if (cause instanceof Exception) {
          throw (Exception) cause;
        }
        if (cause instanceof Error) {
          throw (Error) cause;
        }
        // The cause is a weird kind of Throwable, so throw the outer exception.
        throw e;
      }
    
      private static Set<Method> findInterruptibleMethods(Class<?> interfaceType) {
        Set<Method> set = Sets.newHashSet();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 27 14:21:11 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # actions for the runtime/cgo package appear in the "-n -x" output.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # First build: there is no CGO in use, so no token should be present regardless
    # of weird CGO flags.
    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-flto
    go build -x -n -o dummy.exe ./noUseOfCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/main/resources/footer.html

                evt.target.setAttribute("aria-expanded", evt.target.classList.contains("expanded").toString());
                return false;
            }, false);
        });
    
        // Fix a weird issue making the initial screen always at the bottom.
        document.querySelector(".content").scrollIntoView(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top