Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for Investigate (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

    import org.gradle.util.internal.Resources
    import org.hamcrest.CoreMatchers
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    import static org.hamcrest.CoreMatchers.equalTo
    
    @TestReproducibleArchives
    class ArchiveIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        public final Resources resources = new Resources(temporaryFolder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	// Parse the stack out of the crash report
    	// and record a telemetry count for it.
    	name, err := telemetryCounterName(data)
    	if err != nil {
    		// Keep count of how often this happens
    		// so that we can investigate if necessary.
    		incrementCounter("crash/malformed")
    
    		// Something went wrong.
    		// Save the crash securely in the file system.
    		f, err := os.CreateTemp(os.TempDir(), "*.crash")
    		if err != nil {
    			log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. subprojects/core/build.gradle.kts

        runtimeOnly(libs.groovySql)
        runtimeOnly(libs.groovyTest)
    
        // The bump to SSHD 2.10.0 causes a global exclusion for `groovy-ant` -> `ant-junit`, so forcing it back in here
        // TODO investigate why we depend on SSHD as a platform for internal-integ-testing
        runtimeOnly(libs.antJunit)
    
        testImplementation(project(":platform-jvm"))
        testImplementation(project(":platform-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    progress[0].detailsClassName == LogEvent.name
                    progress[0].details.message.startsWith("configure")
                }
            }
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "emits registration build ops when tasks not realized"() {
            given:
            stopBeforeTaskGraphCalculation()
            register('foo')
    
            when:
            runAndFail()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.junit.Rule
    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class ConcurrentArchiveIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        @Issue("https://github.com/gradle/gradle/issues/22685")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. mvnw

        exit 1
      fi
      if [ $wrapperSha256Result = false ]; then
        echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2
        echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2
        echo "If you updated your Maven version, you need to update the specified wrapperSha256Sum property." >&2
        exit 1
      fi
    fi
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	}
    
    	// Check for use of json or xml tags with unexported fields.
    
    	// Embedded struct. Nothing to do for now, but that
    	// may change, depending on what happens with issue 7363.
    	// TODO(adonovan): investigate, now that that issue is fixed.
    	if field.Anonymous() {
    		return
    	}
    
    	if field.Exported() {
    		return
    	}
    
    	for _, enc := range [...]string{"json", "xml"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

                } catch (Exception e) {
                    throw new RuntimeException("""We might have hit a concurrency problem.
    See the full stacktrace and the list of causes to investigate""", e);
                }
            }
        }
    
        def "can share connection when running build"() {
            given:
            buildFile << """
    def text = System.in.text
    System.out.println 'out=' + text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

      if (failed(mlir::applyPatternsAndFoldGreedily(module, std::move(patterns)))) {
        return module.emitError("failed to apply tf export preparation patterns");
      }
    
      // TODO(hinsu): Investigate if the semantics of keys for these communication
      // ops between the old bridge and new bridge can be reconciled.
      module.walk([&](Operation* op) {
        if (isa<TF::XlaSendToHostOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/configset.go

    			})
    		}
    	}
    
    	return results, nil
    }
    
    // Validate is a placeholder for performing a validation on an already loaded component configs in a ClusterConfiguration
    // TODO: investigate if the function can be repurposed for validating component config via CLI
    func Validate(clusterCfg *kubeadmapi.ClusterConfiguration) field.ErrorList {
    	return field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top