Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,947 for chansend (0.16 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        """
                    )
                }
            ) {
                assertHasErrors(
                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible." to listOf("Method return type has changed", "Method is now abstract"),
                    removed("Method", "Task.setSourceCompatibility(java.lang.String)"),
                )
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest.groovy

    class JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest extends AbstractIntegrationSpec implements DirectoryBuildCacheFixture {
    
        def "classes from cache are used when dependent class is changed in ABI compatible way"() {
            given:
            project_a_depends_on_project_b()
    
            when:
            withBuildCache().run 'assemble'
    
            then:
            executedAndNotSkipped ':b:jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ArchivesContinuousIntegrationTest.groovy

            outputDir.file("A").text == "original"
    
            when:
            packDir.file("A") << "-changed"
            packDir."$packType"(sourceFile)
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":unpack")
            outputDir.file("A").text == "original-changed"
    
            where:
            type      | packType | resourceType | source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiReceivingStandardStreamsCrossVersionSpec.groovy

            stdout.toString().contains('A warning using Log4j')
            stdout.toString().contains('A warning using JUL')
            if (targetVersion.baseVersion >= GradleVersion.version('4.7')) {
                // Changed handling of error log messages
                stdout.toString().contains('this is stderr')
            } else {
                stderr.toString().contains('this is stderr')
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions_test.go

    			}},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			changed := SetStatusCondition(&test.conditions, test.toAdd)
    			if test.expectChanged != changed {
    				t.Errorf("expectChanged=%t != changed=%t", test.expectChanged, changed)
    			}
    			if !reflect.DeepEqual(test.conditions, test.expected) {
    				t.Error(test.conditions)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/stackcheck_test.go

    `, 1008-limit),
    		"main.startChain": fmt.Sprintf(
    			`main.startChain<0>
        grows 32 bytes, calls main.chain0<0>
            grows 48 bytes, calls main.chainEnd<0>
                grows 1008 bytes
                %d bytes over limit
        grows 32 bytes, calls main.chain2<0>
            grows 80 bytes, calls main.chainEnd<0>
                grows 1008 bytes
                %d bytes over limit
    `, 32+48+1008-limit, 32+80+1008-limit),
    		"main.startRec": `main.startRec<0>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/results/results_manager_test.go

    	expectNoUpdate("unchanged foo")
    
    	m.Set(barID, Failure, pod)
    	expectNoUpdate("unchanged bar")
    
    	// Changed results should send an update.
    	m.Set(fooID, Failure, pod)
    	expectUpdate(Update{fooID, Failure, pod.UID}, "changed foo")
    
    	m.Set(barID, Success, pod)
    	expectUpdate(Update{barID, Success, pod.UID}, "changed bar")
    }
    
    func TestResult_ToPrometheusType(t *testing.T) {
    	tests := []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 02 10:55:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

                task ok
            """
    
            configurationCache = newConfigurationCacheFixture()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23273")
        def "invalidates cache if remote script was changed"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
            when:
            scriptFile << """
                print 'update remote script'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/controller/certificates/authority/authority.go

    // based signing. It's used by the signing controller.
    type CertificateAuthority struct {
    	// RawCert is an optional field to determine if signing cert/key pairs have changed
    	RawCert []byte
    	// RawKey is an optional field to determine if signing cert/key pairs have changed
    	RawKey []byte
    
    	Certificate *x509.Certificate
    	PrivateKey  crypto.Signer
    }
    
    // Sign signs a certificate request, applying a SigningPolicy and returns a DER
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 23 19:36:11 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

          if (!params) {
            quantized_.erase(op);
            continue;
          }
          changed |= SetBiasParamsWithAdjustments(op, bias_operand_idx,
                                                  non_bias_operand_indices, params);
        }
      }
    
      return changed;
    }
    
    // Finalizes the arguments and result states in the function.
    void QuantizationDriver::Finalize() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
Back to top