Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 797 for aborted (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessSpec.groovy

            then:
            1 * execHandle.addListener(_)
            1 * execHandle.start()
            1 * execHandle.getState() >> ExecHandleState.STARTED
            1 * execHandle.toString() >> 'ExecHandle'
            1 * execHandle.abort()
            1 * acceptor.stop()
        }
    
        def startThrowsExceptionWhenChildProcessNeverConnectsAndCleansUp() {
            ExecHandleListener listener
            def execResult = Mock(ExecResult)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 07:21:35 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    		{"v1beta10", "v1beta2", true},
    		{"foo", "v1beta2", false},
    		{"bar", "foo", true},
    		{"version1", "version2", true},  // Non kube-like versions are sorted alphabetically
    		{"version1", "version10", true}, // Non kube-like versions are sorted alphabetically
    	}
    
    	for _, tc := range tests {
    		if e, a := tc.expectedGreater, CompareKubeAwareVersionStrings(tc.v1, tc.v2) > 0; e != a {
    			if e {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_libinit_windows.c

    	abort();
    }
    
    void
    x_cgo_notify_runtime_init_done(void* dummy) {
    	 _cgo_maybe_run_preinit();
    
    	 EnterCriticalSection(&runtime_init_cs);
    	runtime_init_done = 1;
    	 LeaveCriticalSection(&runtime_init_cs);
    
    	 if (!SetEvent(runtime_init_wait)) {
    		fprintf(stderr, "runtime: failed to signal runtime initialization complete.\n");
    		abort();
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ForwardingSortedSet.java

    import java.util.SortedSet;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A sorted set which forwards all its method calls to another sorted set. Subclasses should
     * override one or more methods to modify the behavior of the backing sorted set as desired per the
     * <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. cmd/os-readdir_test.go

    			testResults = append(testResults, result{dir, entries})
    			t.Fatalf("Unable to create file, %s", err)
    		}
    		entries = append(entries, name)
    	}
    
    	// Keep entries sorted for easier comparison.
    	sort.Strings(entries)
    
    	// Add entries slice for this test directory.
    	testResults = append(testResults, result{dir, entries})
    	return testResults
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

      restrictions that already apply to CustomResourceDefinition.
      If rule evaluation uses more compute than the limit, the API server aborts the evaluation and the
      admission check that was being performed is aborted; the `failurePolicy` for the ValidatingAdmissionPolicy
      determines the outcome. ([#115747](https://github.com/kubernetes/kubernetes/pull/115747), [@cici37](https://github.com/cici37))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais.go

    	for i := 0; i < len(sa); i++ {
    		sa[i] = unmap[sa[i]]
    	}
    }
    
    // expand_8_32 distributes the compacted, sorted LMS-suffix indexes
    // from sa[:numLMS] into the tops of the appropriate buckets in sa,
    // preserving the sorted order and making room for the L-type indexes
    // to be slotted into the sorted sequence by induceL_8_32.
    func expand_8_32(text []byte, freq, bucket, sa []int32, numLMS int) {
    	bucketMax_8_32(text, freq, bucket)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. LICENSES/vendor/gopkg.in/yaml.v3/LICENSE

    
    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 13 19:52:57 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/diag/messages.go

    		default:
    			return a.String() < b.String()
    		}
    	})
    }
    
    // SortedDedupedCopy returns a different sorted (and deduped) Messages struct.
    func (ms *Messages) SortedDedupedCopy() Messages {
    	newMs := append((*ms)[:0:0], *ms...)
    	newMs.Sort()
    
    	// Take advantage of the fact that the list is already sorted to dedupe
    	// messages (any duplicates should be adjacent).
    	var deduped Messages
    	for _, m := range newMs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ForwardingSortedMap.java

    import java.util.SortedMap;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A sorted map which forwards all its method calls to another sorted map. Subclasses should
     * override one or more methods to modify the behavior of the backing sorted map as desired per the
     * <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top