Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,947 for chansend (0.19 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                                return false;
                            }
                            // Else, something has changed in the include file graph for this source file, so analyse again
                        }
    
                        // Source file has not been compiled before, or its include file graph has changed in some way
                        // Calculate the include file graph for the source file and mark for recompilation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. src/internal/reflectlite/value.go

    	}
    	if f&flagAddr == 0 {
    		panic("reflect: " + methodName() + " using unaddressable value")
    	}
    }
    
    // CanSet reports whether the value of v can be changed.
    // A Value can be changed only if it is addressable and was not
    // obtained by the use of unexported struct fields.
    // If CanSet returns false, calling Set or any type-specific
    // setter (e.g., SetBool, SetInt) will panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/testingcert/certificates.go

    //
    // ca-config.json:
    //
    //	expiry was changed from 1 year to 100 years (876000h)
    //
    // ca-csr.json:
    //
    //	ca expiry was set to 100 years (876000h) ("ca":{"expiry":"876000h"})
    //	key was changed from ecdsa,384 to rsa,2048
    //
    // req-csr.json:
    //
    //	key was changed from ecdsa,384 to rsa,2048
    //	hosts were changed to "localhost","127.0.0.1"
    const CAFileContent = `
    -----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

    }
    
    public enum class KotlinModuleStateModificationKind {
        /**
         * The [KtModule]'s properties or references to other modules are being changed.
         *
         * #### Examples
         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

        Operation* op_with_regions, FrozenRewritePatternSet& patterns,
        int max_iterations) {
      bool changed = true;
      int iteration = 0;
      while (changed && (iteration++ < max_iterations)) {
        changed = false;
        auto walk_result =
            op_with_regions->walk([&patterns, &changed](Operation* operation) {
              GreedyRewriteConfig config;
              config.strictMode = mlir::GreedyRewriteStrictness::ExistingOps;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/crypto/tls/common_string.go

    package tls
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            outputContains("set two after read failed with: The value for extension 'two' property 'prop' is final and cannot be changed any further.")
            outputContains("set one after read failed with: The value for extension 'one' property 'prop' is final and cannot be changed any further.")
            output.count("three = [unknown]") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/internal/pkgbits/codes.go

    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    // Note: These values are public and cannot be changed without
    // updating the go/types importers.
    
    const (
    	ValBool CodeVal = iota
    	ValString
    	ValInt64
    	ValBigInt
    	ValBigRat
    	ValBigFloat
    )
    
    // A CodeType distinguishes among go/types.Type encodings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/incrementalTask/kotlin/build.gradle.kts

        }
    }
    
    // tag::updated-inputs[]
    tasks.register("updateInputs") {
        val inputsDir = layout.projectDirectory.dir("inputs")
        outputs.dir(inputsDir)
        doLast {
            inputsDir.file("1.txt").asFile.writeText("Changed content for existing file 1.")
            inputsDir.file("4.txt").asFile.writeText("Content for new file 4.")
        }
    }
    // end::updated-inputs[]
    
    // tag::removed-input[]
    tasks.register<Delete>("removeInput") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top