Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for Tresults (0.17 sec)

  1. src/cmd/go/internal/modload/load.go

    // 	  module), or
    // 	- the package is in "all" and the definition of "all" we are using includes
    // 	  dependencies of tests (as is the case in Go ≤1.15).
    //
    // After all available packages have been loaded, we examine the results to
    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    // missing packages available. We add those to the module graph and iterate,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    }
    
    func dropInternal(keys []string) []string {
    	result := make([]string, 0, len(keys))
    	for _, k := range keys {
    		if isInternalHeader(k) {
    			continue
    		}
    		result = append(result, k)
    	}
    	return result
    }
    
    // TranslateHeadersOperations translates headers operations
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. .bazelrc

    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    build:linux --copt="-Werror=switch"
    # Required for building with clang
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "create":
    		// we want to track recently created CRDs so that in HA environments we don't have server A allow a create and server B
    		// not have observed the established, so a followup get,update,delete results in a 404. We've observed about 800ms
    		// delay in some CI environments.  Two seconds looks long enough and reasonably short for hot retriers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator_test.go

    				if len(tc.resource.podNames) > i {
    					podName = tc.resource.podNames[i]
    				}
    				// NB: the list reactor actually does label selector filtering for us,
    				// so we have to make sure our results match the label selector
    				podMetric := metricsapi.PodMetrics{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      podName,
    						Namespace: testNamespace,
    						Labels:    map[string]string{"name": podNamePrefix},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		if svcInfo.NodePort() > 0 {
    			// If the preserve-destination service annotation is present, we will disable routing mesh for NodePort.
    			// This means that health services can use Node Port without falsely getting results from a different node.
    			nodePortEndpoints := hnsEndpoints
    			if svcInfo.preserveDIP || svcInfo.localTrafficDSR {
    				nodePortEndpoints = hnsLocalEndpoints
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

        // Run
        csession.SetInputs(inputs);
        csession.SetOutputs(outputs);
        csession.Run(s_);
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
        // Check results
        for (int i = 0; i < expected_results.size(); ++i) {
          TF_Tensor* out = csession.output_tensor(i);
          ASSERT_TRUE(out != nullptr);
          EXPECT_EQ(TF_INT32, TF_TensorType(out));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    === Warnings that are now errors
    
    ==== Referencing tasks in an included build with `finalizedBy`, `mustRunAfter` or `shouldRunAfter`
    
    Referencing tasks contained in an included build with any of the following methods now results in an execution time error:
    
    - `finalizedBy`
    - `mustRunAfter`
    - `shouldRunAfter`
    
    ==== Creating TAR trees from resources without backing files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/math/big/int_test.go

    	}
    	if y != nil && Y.Cmp(y) != 0 {
    		t.Errorf("GCD(%s, %s, %s, %s): got y = %s, want %s", x, y, a, b, Y, y)
    	}
    
    	// check results in presence of aliasing (issue #11284)
    	a2 := new(Int).Set(a)
    	b2 := new(Int).Set(b)
    	a2.GCD(X, Y, a2, b2) // result is same as 1st argument
    	if a2.Cmp(d) != 0 {
    		t.Errorf("aliased z = a GCD(%s, %s, %s, %s): got d = %s, want %s", x, y, a, b, a2, d)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				return true, 0
    			}
    			result := controllerutil.SwapNodeControllerTaint(ctx, nc.kubeClient, []*v1.Taint{&taintToAdd}, []*v1.Taint{&oppositeTaint}, node)
    			if result {
    				// Count the number of evictions.
    				zone := nodetopology.GetZoneKey(node)
    				evictionsTotal.WithLabelValues(zone).Inc()
    			}
    
    			return result, 0
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top