Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for central (0.14 sec)

  1. docs/bucket/notifications/README.md

    ```
    mc mb myminio/images
    mc event add myminio/images arn:minio:sqs::1:amqp --suffix .jpg
    mc event list myminio/images
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    		if strings.ToLower(a[i]) == hwidLC {
    			return true
    		}
    	}
    
    	return false
    }
    
    // DICD flags control SetupDiCreateDeviceInfo
    type DICD uint32
    
    const (
    	DICD_GENERATE_ID       DICD = 0x00000001
    	DICD_INHERIT_CLASSDRVS DICD = 0x00000002
    )
    
    // SUOI flags control SetupUninstallOEMInf
    type SUOI uint32
    
    const (
    	SUOI_FORCEDELETE SUOI = 0x0001
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// compare-and-branch (register-register)
    		//  - integrates comparison of Controls[0] with Controls[1]
    		//  - both control values must be in general purpose registers
    		{name: "CRJ", controls: 2, aux: "S390XCCMask"},   // signed 32-bit integer comparison
    		{name: "CGRJ", controls: 2, aux: "S390XCCMask"},  // signed 64-bit integer comparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    	}
    	if g, e := res.Header.Get("Last-Modified"), ""; g != e {
    		t.Errorf("got last-modified = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Cache-Control"), ""; g != e {
    		t.Errorf("got cache-control = %q, want %q", g, e)
    	}
    	if g, e := res.Header.Get("Content-Range"), "bytes */7"; g != e {
    		t.Errorf("got content-range = %q, want %q", g, e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    	count := 0
    
    	// print all list elements
    	prevLine := prev.Line
    	for i, x := range list {
    		line = p.lineFor(x.Pos())
    
    		// Determine if the next linebreak, if any, needs to use formfeed:
    		// in general, use the entire node size to make the decision; for
    		// key:value expressions, use the key size.
    		// TODO(gri) for a better result, should probably incorporate both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // The size of the cluster excluding constant and identity nodes.
        int effective_cluster_size() const { return effective_cluster_size_; }
    
        // True if the cluster has functional control flow like `If` and `While`.
        bool has_functional_control_flow() const {
          return has_functional_control_flow_;
        }
    
        // The set of devices nodes in the cluster are placed on.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

    // RUN: tf-opt %s -tf-merge-control-flow | FileCheck %s
    
    // Check that IfRegions with different predicates are not merged.
    
    // CHECK-LABEL: func @different_predicate_no_merge
    func.func @different_predicate_no_merge() {
      // CHECK:      tf_device.cluster
      // CHECK:        "tf.IfRegion"
      // CHECK:        "tf.IfRegion"
      "tf_device.cluster"() ({
        %0 = "tf.Const"() {value = dense<true> : tensor<i1>} : () -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      func.return %arg1 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests that the pass returns meaningful error message when region based
    // control flow op has resource arguments.
    func.func @main() -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	//
    	// To reduce contention, this is updated only when obtaining a span
    	// from an mcentral and at this point it counts all of the unallocated
    	// slots in that span (which will be allocated before that mcache
    	// obtains another span from that mcentral). Hence, it slightly
    	// overestimates the "true" live heap size. It's better to overestimate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

    import org.codehaus.groovy.ast.stmt.ForStatement;
    import org.codehaus.groovy.ast.stmt.Statement;
    import org.codehaus.groovy.control.ClassNodeResolver;
    import org.codehaus.groovy.control.CompilationUnit;
    import org.codehaus.groovy.control.ResolveVisitor;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.Types;
    import org.codehaus.groovy.transform.trait.Traits;
    import org.objectweb.asm.Opcodes;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top