Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,788 for seem (0.25 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    	// know here what version of spec the writer of the status has seen. It may seem like
    	// we can at first -- since obj contains spec -- but in the future we will probably make
    	// status its own object, and even if we don't, writes may be the result of a
    	// read-update-write loop, so the contents of spec may not actually be the spec that
    	// the controller has *seen*.
    	if !apiequality.Semantic.DeepEqual(oldCRD.Spec, newCRD.Spec) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    logger.warn("The following dependencies could not be resolved at this point of the build"
                            + " but seem to be part of the reactor:");
    
                    for (Dependency dependency : result.getUnresolvedDependencies()) {
                        logger.warn("o {}", dependency);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        // This test documents the current behavior. It's not necessarily
        // what we want, but there doesn't seem to be a good use case for mutating
        // artifact attributes
        def "can specify an artifact attribute on a variant to mitigate missing withArtifacts rules"() {
            given:
            withDefaultVariantToTest()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. scripts/docs.py

        if is_mkdocs_insiders():
            print("Using insiders")
        lang_path: Path = Path("docs") / lang
        if not lang_path.is_dir():
            typer.echo(f"The language translation doesn't seem to exist yet: {lang}")
            raise typer.Abort()
        typer.echo(f"Building docs for: {lang}")
        build_site_dist_path = build_site_path / lang
        if lang == "en":
            dist_path = site_path
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

      // happens. But the thread's supposedly separate ClassLoader actually has a reference to the app's
      // ClasLoader via its AccessControlContext. It does not seem to be possible to make a
      // URLClassLoader without capturing this reference, and it probably would not be desirable for
      // security reasons anyway. Therefore, the FRQ.close() method provides a way to stop the thread
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    			// typed output of json)
    			if filter.GetTypedConfig() == nil {
    				// TODO(rshriram): fixme
    				// skip this op as we would possibly have to do a merge of Any with struct
    				// which doesn't seem to work well.
    				continue
    			}
    			userFilter := lp.Value.(*listener.Filter)
    			var err error
    			// we need to be able to overwrite filter names or simply empty out a filter's configs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. src/runtime/os_netbsd.go

    	if false {
    		print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " id=", mp.id, " ostk=", &mp, "\n")
    	}
    
    	var uc ucontextt
    	getcontext(unsafe.Pointer(&uc))
    
    	// _UC_SIGMASK does not seem to work here.
    	// It would be nice if _UC_SIGMASK and _UC_STACK
    	// worked so that we could do all the work setting
    	// the sigmask and the stack here, instead of setting
    	// the mask here and the stack in netbsdMstart.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/controller/repair.go

    	var servicePorts []int
    	// map from nodePort to set of protocols
    	seen := make(map[int]sets.String)
    	for _, port := range service.Spec.Ports {
    		nodePort := int(port.NodePort)
    		if nodePort == 0 {
    			continue
    		}
    		proto := string(port.Protocol)
    		s := seen[nodePort]
    		if s == nil { // have not seen this nodePort before
    			s = sets.NewString(proto)
    			servicePorts = append(servicePorts, nodePort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    			initialVerb: "LIST",
    			request: &http.Request{
    				Method: "GET",
    				URL: &url.URL{
    					RawQuery: "blah=asdf&something=else",
    				},
    			},
    			expectedVerb: "LIST",
    		},
    		{
    			// The above may seem counter-intuitive, but it actually is needed for cases like
    			// watching a single item, e.g.:
    			//  /api/v1/namespaces/foo/pods/bar?fieldSelector=metadata.name=baz&watch=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	// For example, the memory segment overrides CS, DS, ES, FS, GS, SS
    	// conflict with each other: only one segment can be in effect.
    	// Disassemblers seem to agree that later prefixes take priority over
    	// earlier ones. I have not taken the time to write assembly programs
    	// to check to see if the hardware agrees.
    	//
    	// What happens if prefixes are given that have no meaning for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top