Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,947 for chansend (0.89 sec)

  1. bin/diff_yaml.py

        changed = 0
        for k in sorted(common):
            if q0[k] != q1[k]:
                changed += 1
    
        print("## +++ ", args.new)
        print("## --- ", args.orig)
        print("## Added:", len(added))
        print("## Removed:", len(removed))
        print("## Updated:", changed)
        print("## Unchanged:", len(common) - changed)
    
        for k in sorted(added):
            print("+", k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 03 16:14:57 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ImplementationChanges.java

                    executable.getDisplayName(), previousImplementation.getClassIdentifier(), currentImplementation.getClassIdentifier()));
            }
    
            if (!currentImplementation.getClassLoaderHash().equals(previousImplementation.getClassLoaderHash())) {
                return visitor.visitChange(new DescriptiveChange("Class path of %s has changed from %s to %s.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/passes/decompose.cc

          return WalkResult::interrupt();
        }
    
        op->erase();
        changed |= true;
        return WalkResult::advance();
      });
    
      // If `changed` is false, it is considered as a failure, so the recursive
      // rewrite will stop.
      return success(changed);
    }
    
    LogicalResult DecomposeTFOpsPass::InlineTFRFuncCalls() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/plugins/MavenPublishPluginTest.groovy

                version.get() == "version"
            }
    
            when:
            project.group = "changed-group"
            project.version = "changed-version"
    
            then:
            with(publishing.publications.test.pom.coordinates) {
                groupId.get() == "changed-group"
                version.get() == "changed-version"
            }
        }
    
        def "pom dir moves with build dir"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

            def oldHash = externalJar.md5Hash
    
            when:
            // change the second duplicate
            duplicate.text = "changed to something else"
            succeeds("duplicate")
            then:
            // check that the upstream jar definitely changed
            oldHash != externalJar.md5Hash
    
            when:
            succeeds(":a:javadoc")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectCollectionTest.groovy

            container.add(a)
            when:
            def result = container.named("a")
            result.configure {
                it.value = "changed"
            }
            then:
            result.get().value == "changed"
        }
    
        def "can remove element using named provider"() {
            def bean = new Bean("bean")
    
            given:
            container.add(bean)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 24 14:51:02 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/external/PlayExternalContinuousBuildIntegrationTest.groovy

            appIsRunningAndDeployed()
    
            when:
            file("conf/routes") << "\n# changed"
    
            then:
            buildTriggeredAndSucceeded()
    
            when:
            file("conf/routes") << "\n# changed again"
    
            then:
            buildTriggeredAndSucceeded()
    
            when:
            file("conf/routes") << "\n# changed yet again"
    
            then:
            buildTriggeredAndSucceeded()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/events.go

    	// NodeSpecUnschedulableChange is the event when unschedulable node spec is changed.
    	NodeSpecUnschedulableChange = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.UpdateNodeTaint, Label: "NodeSpecUnschedulableChange"}
    	// NodeAllocatableChange is the event when node allocatable is changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

        return success();
      }
      switch (spec->type) {
        case ScaleConstraintType::OutputInputFreeScale: {
          // no propagation.
          *changed |= false;
          break;
        }
        case ScaleConstraintType::CustomScale: {
          if (failed(spec->scale_fn(this, op, new_items, changed))) {
            return failure();
          }
          break;
        }
        case ScaleConstraintType::OutputInputSameScale: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/util/util.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // PodSandboxChanged checks whether the spec of the pod is changed and returns
    // (changed, new attempt, original sandboxID if exist).
    func PodSandboxChanged(pod *v1.Pod, podStatus *kubecontainer.PodStatus) (bool, uint32, string) {
    	if len(podStatus.SandboxStatuses) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top