Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,590 for happen (0.49 sec)

  1. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Exceptions.kt

        )
    
    
    internal
    fun internalError(): Nothing =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: "What did you expect to see?"
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/localize_var_handles.cc

        return;  // We're already directly after a VarHandleOp.
      }
    
      const TF::ResourceDataflowState* state =
          solver.lookupState<TF::ResourceDataflowState>(resource);
      if (!state) {
        // Can't actually happen. Even for gaps in the dataflow, we'll receive
        // the initial state.
        return;
      }
      auto ops = state->getValue().ops;
      if (ops.size() != 1) {
        return;
      }
      Operation* source = *ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ProjectParallelExecutionController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface ProjectParallelExecutionController {
        /**
         * Indicate that project execution may happen.
         *
         * <p>Note: this must be called prior to any projects being created for a build tree.</p>
         */
        void startProjectExecution(boolean parallel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelViewClosedException.java

    import org.gradle.model.internal.type.ModelType;
    
    /**
     * Thrown when at attempt is made to mutate a subject of a rule after the rule has completed.
     * <p>
     * This can potentially happen when a reference to the subject is retained during a rule and then used afterwards,
     * Such as when an anonymous inner class or closure “closes over” the subject.
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Execution engine that takes a unit of work and makes it happen"
    
    dependencies {
        api(libs.guava)
        api(libs.jsr305)
        api(libs.slf4jApi)
    
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        compileOnly(libs.errorProneAnnotations)
        api(project(":base-services"))
        api(project(":build-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedSingleFileReport.java

            super(name, OutputType.FILE, task);
            // This is for backwards compatibility for plugins that attach a convention mapping to the replaced property
            // TODO - this wiring should happen automatically (and be deprecated too)
            getOutputLocation().convention(getProjectLayout().file(new DefaultProvider<>(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/util/iptables/save_restore.go

    	for {
    		i := bytes.Index(save, []byte("\n:"))
    		if i == -1 {
    			break
    		}
    		start := i + 2
    		save = save[start:]
    		end := bytes.Index(save, []byte(" "))
    		if end == -1 {
    			// shouldn't happen, but...
    			break
    		}
    		chain := Chain(save[:end])
    		chainsSet.Insert(chain)
    		save = save[end:]
    	}
    	return chainsSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		if err != nil {
    			// This shouldn't happen: we should have already skipped count files that
    			// don't contain valid start or end times.
    			u.logger.Printf("BUG: failed to parse expiry for collected count file: %v", err)
    			continue
    		}
    
    		if end.Before(thisInstant) {
    			expiry := end.Format(dateFormat)
    			countFiles[expiry] = append(countFiles[expiry], f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top