Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for Trailing (0.25 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    // ReplicaSetCondition describes the state of a replica set at a certain point.
    type ReplicaSetCondition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// watch remained established successfully
    			}
    		})
    	}
    }
    
    func TestWatchNotHangingOnStartupFailure(t *testing.T) {
    	// Configure cacher so that it can't initialize, because of
    	// constantly failing lists to the underlying storage.
    	dummyErr := fmt.Errorf("dummy")
    	backingStorage := &dummyStorage{err: dummyErr}
    	cacher, _, err := newTestCacherWithoutSyncing(backingStorage)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    // for objects passed through ellipsis (...), failing for uncopyable
    // objects.  We define this to ensure that only POD is passed through
    // ellipsis on these systems.
    #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    the TF2 Embedding API. This is designed for applications that have an
    embedding lookup on the SparseCore, followed by one or more dense layers on
    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/sync/atomic/atomic_test.go

    		}
    	}()
    	f()
    }
    
    func TestUnaligned64(t *testing.T) {
    	// Unaligned 64-bit atomics on 32-bit systems are
    	// a continual source of pain. Test that on 32-bit systems they crash
    	// instead of failing silently.
    	if !arch32 {
    		t.Skip("test only runs on 32-bit systems")
    	}
    
    	x := make([]uint32, 4)
    	p := (*uint64)(unsafe.Pointer(&x[1])) // misaligned
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    		// the pod may still be setting up at this point.
    		return status.IsTerminationRequested()
    	}
    	// an unknown pod is considered not to be terminating (use ShouldPodContainersBeTerminating in
    	// cleanup loops to avoid failing to cleanup pods that have already been removed from config)
    	return false
    }
    
    func (p *podWorkers) ShouldPodContainersBeTerminating(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //go:build zos && s390x
    
    // Many of the following syscalls are not available on all versions of z/OS.
    // Some missing calls have legacy implementations/simulations but others
    // will be missing completely. To achieve consistent failing behaviour on
    // legacy systems, we first test the function pointer via a safeloading
    // mechanism to see if the function exists on a given system. Then execution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	// same spot in sym.P), number of external _host_ relocations needed (i.e.
    	// ELF/Mach-O/etc. relocations, not Go relocations, this must match ELF.Reloc1,
    	// etc.), and a boolean indicating success/failure (a failing value indicates
    	// a fatal error).
    	Archreloc func(*Target, *loader.Loader, *ArchSyms, loader.Reloc, loader.Sym,
    		int64) (relocatedOffset int64, nExtReloc int, ok bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    		// again to get a new TCP connection, rather than failing
    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    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