Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for repeated (0.19 sec)

  1. src/cmd/go/testdata/script/build_repeated_godebug_issue62346.txt

    [short] skip # runs go build
    ! go build file.go
    ! stderr 'panic:'
    ! stderr 'runtime error'
    stderr 'file.go:2:1: repeated //go:debug for panicnil'
    
    -- file.go --
    //go:debug panicnil=1
    //go:debug panicnil=1
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 236 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

                    }
                  }
                });
    
        assertTrue(at.compareAndSet(1.0, 2.0));
        awaitTermination(t);
        assertBitEquals(3.0, at.get());
      }
    
      /** repeated weakCompareAndSet succeeds in changing value when equal to expected */
      public void testWeakCompareAndSet() {
        double prev = Math.E;
        double unused = Math.E + Math.PI;
        AtomicDouble at = new AtomicDouble(prev);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/queries.libsonnet

              |||
            ),
          ],
    
          xdsConnections: [
            self.query(
              'Connections (client reported)',
              |||
                sum(envoy_cluster_upstream_cx_active{cluster_name="xds-grpc"})
              |||
            ),
            self.query(
              'Connections (server reported)',
              |||
                sum(pilot_xds{})
              |||
            ),
          ],
    
          pushTime:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/TestComponentResolutionState.java

        @Override
        public void addCause(ComponentSelectionDescriptorInternal componentSelectionDescriptor) {
        }
    
        @Override
        public void reject() {
            rejected = true;
        }
    
        @Override
        public boolean isRejected() {
            return rejected;
        }
    
        @Override
        public Set<VirtualPlatformState> getPlatformOwners() {
            return Collections.emptySet();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
        class EntryInvalid(val reason: String) : CheckedFingerprint()
    
        // The entry can be reused, however the values for certain projects cannot be reused and should be recreated
        class ProjectsInvalid(val reason: String, val invalidProjects: Set<Path>) : CheckedFingerprint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            file("buildSrc/build.gradle") << """
                // These should not be reported, as these are run during configuration
                gradle.buildFinished { }
                classes {
                    inputs.property('p', project)
                    doLast { t -> t.project }
                }
                // These should be reported
                task broken {
                    inputs.property('p', project).optional(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. cmd/storage-interface.go

    	GetDiskID() (string, error)
    
    	// Set a unique 'uuid' for this disk, only used when
    	// disk is replaced and formatted.
    	SetDiskID(id string)
    
    	// Returns healing information for a newly replaced disk,
    	// returns 'nil' once healing is complete or if the disk
    	// has never been replaced.
    	Healing() *healingTracker
    	DiskInfo(ctx context.Context, opts DiskInfoOptions) (info DiskInfo, err error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/test/groovy/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBackgroundJobExecutorsTest.groovy

            when:
            def task = new FutureTask<>(() -> 1)
            jobExecutors.userJobExecutor.execute(task)
    
            then:
            task.get() == 1
        }
    
        def "background job is rejected if submitted after shutdown"() {
            given:
            jobExecutors.stop()
    
            when:
            jobExecutors.userJobExecutor.execute {}
    
            then:
            thrown RejectedExecutionException
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/build.gradle.kts

    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    val prepareVersionsInfo = tasks.register<PrepareVersionsInfo>("prepareVersionsInfo") {
        destFile = layout.buildDirectory.file("generated-resources/all-released-versions/all-released-versions.properties")
        versions = moduleIdentity.releasedVersions.map {
            it.allPreviousVersions.joinToString(" ") { it.version }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/os/exec_unix.go

    	}
    
    	p.sigMu.RLock()
    	defer p.sigMu.RUnlock()
    
    	switch p.pidStatus() {
    	case statusDone:
    		return ErrProcessDone
    	case statusReleased:
    		return errors.New("os: process already released")
    	}
    
    	return convertESRCH(syscall.Kill(p.Pid, s))
    }
    
    func convertESRCH(err error) error {
    	if err == syscall.ESRCH {
    		return ErrProcessDone
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top