Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for scouse (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								},
    							},
    						},
    					},
    				},
    			}},
    			Names: apiextensionsv1.CustomResourceDefinitionNames{
    				Plural:   resource,
    				Kind:     kind,
    				ListKind: kind + "List",
    			},
    			Scope: apiextensionsv1.NamespaceScoped,
    		},
    	}
    
    	_, err = fixtures.CreateNewV1CustomResourceDefinition(myCRD, apiExtensionClient, dynamicClient)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, c := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    This is particularly useful if you develop and publish Java libraries with Gradle where the separation between `api` and `implementation` dependencies is reflected in the published scopes.
    
    [[rel5.0:changes_to_default_task]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ExcludeSpec resolutionFilter = computeModuleResolutionFilter(incomingEdges);
    
            // Virtual platforms require their constraints to be recomputed each time as each module addition can cause a shift in versions
            if (!isVirtualPlatformNeedsRefresh()) {
                // Check if node was previously traversed with the same net exclusion when not a virtual platform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    			Name:   nodes[index].Node().Name,
    			Scores: make([]framework.PluginScore, len(plugins)),
    		}
    
    		for i, pl := range plugins {
    			weight := f.scorePluginWeight[pl.Name()]
    			nodeScoreList := pluginToNodeScores[pl.Name()]
    			score := nodeScoreList[index].Score
    
    			if score > framework.MaxNodeScore || score < framework.MinNodeScore {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    Map<File, MavenProject> projectIndex, List<InterimResult> interimResults) {
                // The transformation may need to access dependencies raw models,
                // which may cause some re-entrance in the build() method and can
                // actually cause deadlocks.  In order to workaround the problem,
                // we do a first pass by reading all rawModels in order.
                List<ProjectBuildingResult> results = new ArrayList<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	}
    	if n, err := conn.Read(buf); n != 6 || err != nil || string(buf) != "foobar" {
    		t.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	// Set a deadline which should cause Write to timeout
    	if err = srv.SetDeadline(time.Now()); err != nil {
    		t.Fatalf("SetDeadline(time.Now()) err: %v", err)
    	}
    	if _, err = srv.Write([]byte("should fail")); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            if (causes == null) {
                return null;
            }
            List<Failure> failures = new ArrayList<>();
            for (InternalFailure cause : causes) {
                failures.add(toFailure(cause));
            }
            return failures;
        }
    
        private static Failure toFailure(InternalFailure origFailure) {
            if (origFailure instanceof InternalTestAssertionFailure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    					n.Kind = "iconst"
    					n.Const = n.Define
    				}
    			} else if n.Define[0] == '"' {
    				if _, err := parser.ParseExpr(n.Define); err == nil {
    					n.Kind = "sconst"
    					n.Const = n.Define
    				}
    			}
    
    			if n.IsConst() {
    				continue
    			}
    		}
    
    		// If this is a struct, union, or enum type name, no need to guess the kind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    			// slowdown. Therefore we fall back to SSA here if needed.
    			//
    			// Using SSA instead of Get+Update has the advantage that
    			// there is no delay for the Get. SSA is safe because only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	// arising from renegotiation. It can map expected errors to nil to
    	// ignore them.
    	checkRenegotiationError func(renegotiationNum int, err error) error
    	// sendKeyUpdate will cause the server to send a KeyUpdate message.
    	sendKeyUpdate bool
    }
    
    var serverCommand = []string{"openssl", "s_server", "-no_ticket", "-num_tickets", "0"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top