Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 176 for dialing (0.32 sec)

  1. tests/integration/operator/switch_cr_test.go

    	}
    	return nil
    }
    
    func cleanupInClusterCRs(t framework.TestContext, cs cluster.Cluster) {
    	// clean up hanging installed-state CR from previous tests, failing for errors is not needed here.
    	scopes.Framework.Info("cleaning up in-cluster CRs")
    	gvr := iopv1alpha1.IstioOperatorGVR
    	crList, err := cs.Dynamic().Resource(gvr).Namespace(IstioNamespace).List(context.TODO(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    [[migant:managing_dependencies]]
    == Managing dependencies
    
    Ant builds typically take one of two approaches to dealing with binary <<dependency_management_terminology#sub:terminology_dependency,dependencies>> (such as libraries):
    
     * Storing them with the project in a local "lib" directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/amd64/asm.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package amd64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"log"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    	return nil
    }
    
    // writeSetgroups writes to /proc/PID/setgroups "deny" if enable is false
    // and "allow" if enable is true.
    // This is needed since kernel 3.19, because you can't write gid_map without
    // disabling setgroups() system call.
    func writeSetgroups(pid int, enable bool) error {
    	sgf := "/proc/" + itoa.Itoa(pid) + "/setgroups"
    	fd, err := Open(sgf, O_RDWR, 0)
    	if err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         * @return t1
         */
        public static <T, C extends Collection<? super T>> C addAll(C t1, T... t2) {
            Collections.addAll(t1, t2);
            return t1;
        }
    
        /**
         * The result of diffing two sets.
         *
         * @param <T> The type of element the sets contain
         * @see CollectionUtils#diffSetsBy(java.util.Set, java.util.Set, InternalTransformer)
         */
        public static class SetDiff<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multiset.java

       * {@link Collections#frequency} (which would presumably perform more poorly).
       *
       * <p><b>Note:</b> the utility method {@link Iterables#frequency} generalizes this operation; it
       * correctly delegates to this method when dealing with a multiset, but it can also accept any
       * other iterable type.
       *
       * @param element the element to count occurrences of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

      NODE_OS_DISTRIBUTION='gci'
    fi
    
    # GPUs supported in GCE do not have compatible drivers in Debian 7.
    if [[ "${NODE_OS_DISTRIBUTION}" = 'debian' ]]; then
      NODE_ACCELERATORS=''
    fi
    
    # To avoid failing large tests due to some flakes in starting nodes, allow
    # for a small percentage of nodes to not start during cluster startup.
    ALLOWED_NOTREADY_NODES=${ALLOWED_NOTREADY_NODES:-$(($(get-num-nodes) / 100))}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    // saves it in the buffer.
    TF_CAPI_EXPORT extern void TFE_HostAddressSpace(TFE_Context* ctx,
                                                    TF_Buffer* buf);
    
    // APIs for generically dealing with op attributes (e.g. when forwarding them
    // through custom device implementations).
    //
    // TODO(allenl): Currently these are black boxes, but we should have some way to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    = Debugging and diagnosing cache misses
    
    To make the most of task output caching, it is important that any necessary inputs to your tasks are specified correctly, while at the same time avoiding unneeded inputs.
    Failing to specify an input that affects the task's outputs can result in incorrect builds, while needlessly specifying inputs that do not affect the task's output can cause cache misses.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/reloctype.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package objabi
    
    type RelocType int16
    
    //go:generate stringer -type=RelocType
    const (
    	R_ADDR RelocType = 1 + iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top