Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 6,499 for happen (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheErrorIntegrationTest.groovy

        def "attempting to configure a unknown remote build cache fails with a reasonable error"() {
            settingsFile << """
                buildCache {
                    remote {
                        assert false : "should not happen"
                    }
                }
            """
            when:
            fails("help")
            then:
            failure.assertHasCause("A type for the remote build cache must be configured first.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 13:13:02 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/ConfigurationTargetIdentifier.java

         * Else, null.
         */
        @Nullable
        public abstract String getTargetPath();
    
        public abstract String getBuildPath();
    
        /**
         * Returns null if the thing is of an unknown type.
         * This can happen with {@code apply(from: "foo", to: someTask)},
         * where “to” can be absolutely anything.
         */
        @Nullable
        public static ConfigurationTargetIdentifier of(Object any) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

     *   captured after the changes; to avoid this, after a known modification we assume no further modifications will
     *   happen to the same location, and all file events belong the know modifications instead.
     */
    public class FileWatchingFilter implements FileSystemAccess.WriteListener {
        private final FileHierarchySet immutableLocations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubeletconfig/util/test/test.go

    		}
    	} else if len(substr) > 0 {
    		t.Fatalf("expect error to contain %q but got nil error", substr)
    	}
    }
    
    // SkipRest returns true if there was a non-nil error or if we expected an error that didn't happen,
    // and logs the appropriate error on the test object.
    // The return value indicates whether we should skip the rest of the test case due to the error result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 19 16:18:53 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/bug_report.yml

        id: bug-description
        attributes:
          label: Bug Description
          description: Tell us what issues you ran into.
          placeholder: Include information about what you tried, what you expected to happen, and what actually happened. The more details, the better!
        validations:
          required: true
      - type: textarea
        id: version
        attributes:
          label: Version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

        def "For every boolean is getter there is a get Getter"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons() // We need to fork - if we do not fork Class-Decoration does not happen
    
            when:
            def convertedClasses = this.getClass().getResource( '/org/gradle/initialization/converted-types.txt' ).readLines()
            buildFile << """
                task checkHasGetters {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device_ops.cc

    void XlaDeviceDummyOp::Compute(OpKernelContext* ctx) {
      LOG(FATAL) << "Attempted to execute Op " << name() << " type "
                 << type_string() << " on an XLA device. This should never happen.";
    }
    
    XlaAssignVariableOp::XlaAssignVariableOp(OpKernelConstruction* c)
        : OpKernel(c) {
      OP_REQUIRES_OK(c, c->GetAttr("dtype", &dtype_));
    }
    
    void XlaAssignVariableOp::Compute(OpKernelContext* context) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

         * in `A` that takes the type parameter `T` (fake override). Given such a fake override symbol, [unwrapFakeOverrides] recovers the
         * original declared symbol.
         *
         * Such situation can also happen for intersection symbols (in case of multiple super types containing symbols with identical signature
         * after specialization) and delegation.
         */
        public val KaCallableSymbol.unwrapFakeOverrides: KaCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/util.go

    func (ctxt *Link) Errorf(s loader.Sym, format string, args ...interface{}) {
    	if ctxt.loader != nil {
    		ctxt.loader.Errorf(s, format, args...)
    		return
    	}
    	// Note: this is not expected to happen very often.
    	format = fmt.Sprintf("sym %d: %s", s, format)
    	format += "\n"
    	fmt.Fprintf(os.Stderr, format, args...)
    	afterErrorAction()
    }
    
    func artrim(x []byte) string {
    	i := 0
    	j := len(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 20:39:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. cmd/shared-lock.go

    		if err != nil {
    			continue
    		}
    
    	keepLock:
    		for {
    			select {
    			case <-ctx.Done():
    				return
    			case <-lkctx.Context().Done():
    				// The context of the lock is canceled, this can happen
    				// if one lock lost quorum due to cluster instability
    				// in that case, try to lock again.
    				break keepLock
    			case ld.lockContext <- lkctx:
    				// Send the lock context to anyone asking for it
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 09:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top