Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for mypair (0.23 sec)

  1. pkg/apis/storage/validation/validation_test.go

    			shouldSucceed: false,
    		},
    		"two AllowedTopologies terms, with a pair of the same MatchLabelExpressions and a pair of different ones": {
    			class:         makeClass(&waitingMode, topologyExprsOneSameOneDiff),
    			shouldSucceed: true,
    		},
    		"two AllowedTopologies terms, with a pair of the same Values and a pair of different ones": {
    			class:         makeClass(&waitingMode, topologyValuesOneSameOneDiff),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * This URL references a share called <code>tmp</code> on the server
     * <code>angus</code> as user <code>miallen</code> who's password is
     * <code>mypass</code>.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
     * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td>
     * <td>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    	}
    	return pod, status
    }
    
    func TestComputePodActions(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    
    	// Creating a pair reference pod and status for the test cases to refer
    	// the specific fields.
    	basePod, baseStatus := makeBasePodAndStatus()
    	noAction := podActions{
    		SandboxID:         baseStatus.SandboxStatuses[0].Id,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Optimizations
    // Note that PPC "logical" immediates come in 0:15 and 16:31 unsigned immediate forms,
    // so ORconst, XORconst easily expand into a pair.
    
    // Include very-large constants in the const-const case.
    (AND (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c&d])
    (OR (MOVDconst [c]) (MOVDconst [d])) => (MOVDconst [c|d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/runtime/map.go

    //        8.00        41.10         9.40         5.00         8.00
    //
    // %overflow   = percentage of buckets which have an overflow bucket
    // bytes/entry = overhead bytes used per key/elem pair
    // hitprobe    = # of entries to check when looking up a present key
    // missprobe   = # of entries to check when looking up an absent key
    //
    // Keep in mind this data is for maximally loaded tables, i.e. just
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	Hostname string `protobuf:"bytes,21,opt,name=hostname,proto3" json:"hostname,omitempty"`
    	// Network represents the network this workload is on. This may be elided for the default network.
    	// A (network,address) pair makeup a unique key for a workload *at a point in time*.
    	Network string `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
    	// Protocol that should be used to connect to this workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    //
    // Please note that ValuesIn copies the values from the containers
    // passed in and keeps them to generate tests in RUN_ALL_TESTS().
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // references. The linker's loadlib method uses this to determine if
    // there are unresolved references to functions in system libraries
    // (for example, libgcc.a), presumably due to CGO code. Return value
    // is a pair of lists of loader.Sym's. First list corresponds to the
    // corresponding to the undefined symbols themselves, the second list
    // is the symbol that is making a reference to the undef. The "limit"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    constraint will be used by the placer graph optimization to assign a device
    to the op.
    
    This pass should run in the export pipeline after tf-replicate-to-island so
    each replica has its own distinct (predecessor, Split) pair.
    
    The colocation class (`_class`) of the `Split` is set to the same class as
    its predecessor:
    
    ```mlir
    %outputs1:2, %control1 = tf_executor.island wraps "tf.IteratorGetNext"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top