Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for findMin (0.3 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    //
    // Important: locatePrologEnd is expected to work properly only with
    // optimization turned off (e.g. "-N"). If optimization is enabled
    // we can't be assured of finding all input arguments spilled in the
    // entry block prolog.
    func locatePrologEnd(f *Func, needCloCtx bool) (ID, *Value) {
    
    	// returns true if this instruction looks like it moves an ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			},
    			expected: []string{"node2"},
    		},
    		{
    			// pickOneNodeForPreemption adjusts pod priorities when finding the sum of the victims. This
    			// test ensures that the logic works correctly.
    			name:           "sum of adjusted priorities is considered",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

        ASSERT_GE(op_list.op_size(), 1);
        typedef tensorflow::protobuf::RepeatedPtrField<tensorflow::OpDef> OpDefs;
        const OpDefs& ops = op_list.op();
        bool found = std::find_if(ops.begin(), ops.end(),
                                  [](const tensorflow::OpDef& op_def) {
                                    return op_def.name() == "TestCApi";
                                  }) != ops.end();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.3.md

    * federation service controller: fixing the logic to update DNS records ([#27999](https://github.com/kubernetes/kubernetes/pull/27999), [@quinton-hoole](https://github.com/quinton-hoole))
    * federation: Updating KubeDNS to try finding a local service first for federation query ([#27708](https://github.com/kubernetes/kubernetes/pull/27708), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  5. src/testing/testing.go

    // supported platforms, 'go test' compiles the test executable with fuzzing
    // coverage instrumentation. The fuzzing engine uses that instrumentation to
    // find and cache inputs that expand coverage, increasing the likelihood of
    // finding bugs. If the fuzz target fails for a given input, the fuzzing engine
    // writes the inputs that caused the failure to a file in the directory
    // testdata/fuzz/<Name> within the package directory. This file later serves as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    		); ok {
    			return drs
    		}
    	}
    
    	// 2. select destination rule from service namespace
    	svcNs := service.Attributes.Namespace
    
    	// This can happen when finding the subset labels for a proxy in root namespace.
    	// Because based on a pure cluster's fqdn, we do not know the service and
    	// construct a fake service without setting Attributes at all.
    	if svcNs == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	}
    	return zeroDialer.DialContext(ctx, network, addr)
    }
    
    // A wantConn records state about a wanted connection
    // (that is, an active call to getConn).
    // The conn may be gotten by dialing or by finding an idle connection,
    // or a cancellation may make the conn no longer wanted.
    // These three options are racing against each other and use
    // wantConn to coordinate and agree about the winning outcome.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top