Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,590 for happen (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VisitedArtifactResults.java

        /**
         * Selects the artifacts for the matching variant of each node seen during traversal.
         * The implementation should attempt to select artifacts eagerly, but may be lazy where
         * the selection cannot happen until the results are queried.
         *
         * @param variantSelector Performs variant selection
         * @param spec Governs how artifacts are selected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    		reactors []reaction
    		// PV event to simulate. This PV will be automatically added to
    		// initialObjects.
    		updatedPV *v1.PersistentVolume
    		// List of expected kubeclient actions that should happen during the
    		// test.
    		expectedActions []clienttesting.Action
    	}{
    		// PV events
    		//
    		{
    			name:      "PV without finalizer -> finalizer is added",
    			updatedPV: pv(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/Slf4jLoggingConfigurer.java

            }
    
            ILoggerFactory loggerFactory = LoggerFactory.getILoggerFactory();
            if (!(loggerFactory instanceof OutputEventListenerBackedLoggerContext)) {
                // Cannot configure Slf4j logger. This will happen if:
                // - Tests are executed with a custom classloader (e.g using `java.system.class.loader`)
                // - Tests are run with `--module-path`, effectively hiding Gradle classes
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

    // output side to satisfy the constraint of the next operation.
    struct RequantizeState {
      // Sometimes, we have to "requantize" the quantization result to satisfy all
      // the constraints. The "requantize" can happen either on the input or output
      // of the quantization result.
      enum RequantizePosition {
        NO_REQUANTIZE,
        ON_INPUT,
        ON_OUTPUT
      } pos = NO_REQUANTIZE;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/StackTraceFilter.java

                if (filterSpec.isSatisfiedBy(element)) {
                    filtered.add(element);
                }
            }
            // If none of the lines match the filter, keep the original stacktrace
            // It might happen when test method was inherited from a base class.
            // In that case, "derived" test class never appears in the stacktrace,
            // and it is better to show the stacktrace as is rather than truncate it completely.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/apis.go

    	// inconsistency similar to the one above. Hence the requirement
    	// for atomic counter mode: according to package atomic docs,
    	// "...operations that happen in a specific order on one thread,
    	// will always be observed to happen in exactly that order by
    	// another thread". Thus we can be sure that there will be no
    	// inconsistency when reading the counter array from the thread
    	// running ClearCounters.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug_report.yaml

          required: true
    
      - type: textarea
        attributes:
          label: Expected Behavior
          description: What did you expect to happen?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: Actual Behavior
          description: What actually happened?
        validations:
          required: true
    
      - type: dropdown
        attributes:
          label: Packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/IncompatibleDependencyAttributesMessageBuilder.java

            TreeFormatter fmt = new TreeFormatter();
            fmt.node("Cannot select a variant of '" + module.getId());
            fmt.append("' because different values for attribute '");
            fmt.append(attribute.toString());
            fmt.append("' are requested");
            fmt.startChildren();
            Set<EdgeState> incomingEdges = module.getIncomingEdges();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/runtime/error.go

    	boundsSliceB    // s[x:y], 0 <= x <= y failed (but boundsSliceA didn't happen)
    
    	boundsSlice3Alen // s[?:?:x], 0 <= x <= len(s) failed
    	boundsSlice3Acap // s[?:?:x], 0 <= x <= cap(s) failed
    	boundsSlice3B    // s[?:x:y], 0 <= x <= y failed (but boundsSlice3A didn't happen)
    	boundsSlice3C    // s[x:y:?], 0 <= x <= y failed (but boundsSlice3A/B didn't happen)
    
    	boundsConvert // (*[x]T)(s), 0 <= x <= len(s) failed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/BuildCommandOnly.java

            if (!(command instanceof Build)) {
                throw new IllegalStateException(String.format("%1$s command action received a command that isn't Build (command is %2$s), this shouldn't happen", this.getClass(), command.getClass()));
            }
    
            doBuild(execution, (Build)command);
        }
    
        /**
         * Note that the build param is the same object as execution.getCommand(), just “pre casted”.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top