Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for elided (0.27 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecResult.java

         */
        int getExitValue();
    
        /**
         * Throws an {@link org.gradle.process.internal.ExecException} if the process exited with a non-zero exit value.
         *
         * @return this
         * @throws ExecException if the process exited with a non-zero exit value
         */
        ExecResult assertNormalExitValue() throws ExecException;
    
        /**
         * Re-throws any failure executing this process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/internal/abi/rangefuncconsts.go

    // For best code generation, RF_DONE and RF_READY should be 0 and 1.
    const (
    	RF_DONE          = RF_State(iota) // body of loop has exited in a non-panic way
    	RF_READY                          // body of loop has not exited yet, is not running  -- this is not a panic index
    	RF_PANIC                          // body of loop is either currently running, or has panicked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

         */
        ObjectConnection getConnection();
    
        ExecResult waitForStop();
    
        /**
         * Returns the result of the process, if it has exited.  If the process has not exited yet, returns {@link Optional#empty()}.
         */
        Optional<ExecResult> getExecResult();
    
        JvmMemoryStatus getJvmMemoryStatus();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.ipr.xml

                    <list>
                      <option value="0.2"/>
                    </list>
                  </option>
                </SplitterProportionsDataImpl>
              </splitter-proportions>
              <last-edited>1.6</last-edited>
            </UIState>
          </state>
          <state key="ScopeChooserConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

                    <list>
                      <option value="0.2"/>
                    </list>
                  </option>
                </SplitterProportionsDataImpl>
              </splitter-proportions>
              <last-edited>1.6</last-edited>
            </UIState>
          </state>
          <state key="ScopeChooserConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

                    <list>
                      <option value="0.2"/>
                    </list>
                  </option>
                </SplitterProportionsDataImpl>
              </splitter-proportions>
              <last-edited>1.6</last-edited>
            </UIState>
          </state>
          <state key="ScopeChooserConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    				disp := rule.Evaluate(imp)
    				if disp == DepAllowed {
    					decided = true
    					break // no further rules, next file
    				} else if disp == DepForbidden {
    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithASubProjectThatDoesNotHaveTheIdeaPluginApplied/expectedFiles/root.ipr.xml

                    <list>
                      <option value="0.2"/>
                    </list>
                  </option>
                </SplitterProportionsDataImpl>
              </splitter-proportions>
              <last-edited>1.6</last-edited>
            </UIState>
          </state>
          <state key="ScopeChooserConfigurable.UI">
            <UIState>
              <splitter-proportions>
                <SplitterProportionsDataImpl/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. pkg/probe/exec/exec_test.go

    	return nil, nil
    }
    
    type fakeExitError struct {
    	exited     bool
    	statusCode int
    }
    
    func (f *fakeExitError) String() string {
    	return f.Error()
    }
    
    func (f *fakeExitError) Error() string {
    	return "fake exit"
    }
    
    func (f *fakeExitError) Exited() bool {
    	return f.exited
    }
    
    func (f *fakeExitError) ExitStatus() int {
    	return f.statusCode
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCSandbox(pods[0], 1, runtimeapi.PodSandboxState_SANDBOX_READY, true, false, 1),
    				// exited sandbox without containers.
    				makeGCSandbox(pods[0], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 0),
    				// exited sandbox with containers.
    				makeGCSandbox(pods[1], 1, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 1),
    				// exited sandbox without containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top