Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 432 for aN (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        }
      }];
    }
    
    def TF_CaseOp : TF_Op<"Case",
          [DeclareOpInterfaceMethods<SymbolUserOpInterface>]> {
      let summary = [{
    An n-way switch statement which calls a single branch function.
      }];
    
      let description = [{
    An n-way switch statement, implementing the following:
        ```
        switch (branch_index) {
          case 0:
            output = branches[0](input);
            break;
          case 1:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/time/time.go

    			v /= 10
    		}
    	}
    	return w
    }
    
    // Nanoseconds returns the duration as an integer nanosecond count.
    func (d Duration) Nanoseconds() int64 { return int64(d) }
    
    // Microseconds returns the duration as an integer microsecond count.
    func (d Duration) Microseconds() int64 { return int64(d) / 1e3 }
    
    // Milliseconds returns the duration as an integer millisecond count.
    func (d Duration) Milliseconds() int64 { return int64(d) / 1e6 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    		// to the go.mod file, or may have made an erroneous hand-edit that causes
    		// it to be untidy.)
    		//
    		// Promoting an indirect dependency to a root adds the next layer of its
    		// dependencies to the module graph, which may increase the selected
    		// versions of other modules from which we have already loaded packages.
    		// So after we promote an indirect dependency to a root, we need to reload
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // Merge (RLDICL [encoded] (SRDconst [s] x)) into (RLDICL [new_encoded] x)
    // SRDconst on PPC64 is an extended mnemonic of RLDICL. If the input to an
    // RLDICL is an SRDconst, and the RLDICL does not rotate its value, the two
    // operations can be combined. This functions assumes the two opcodes can
    // be merged, and returns an encoded rotate+mask value of the combined RLDICL.
    func mergePPC64RLDICLandSRDconst(encoded, s int64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	}
    
    	// Transport request context.
    	//
    	// If RoundTrip returns an error, it cancels this context before returning.
    	//
    	// If RoundTrip returns no error:
    	//   - For an HTTP/1 request, persistConn.readLoop cancels this context
    	//     after reading the request body.
    	//   - For an HTTP/2 request, RoundTrip cancels this context after the HTTP/2
    	//     RoundTripper returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            _ * b.outputDirectory >> file("outputDir").file("outputSubdir").file("output")
    
            expect:
            tasksAreNotExecutedInParallel(a, b)
        }
    
        def "a task that writes into an ancestor directory of a file that is an output of a running task is not started"() {
            given:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> file("outputDir").file("outputSubdir").file("output")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Uses an accessor to configure the `sourceSets` project extension
    <3> Uses an accessor to configure the `main` source set
    <4> Uses an accessor to configure the `java` source for the `main` source set
    <5> Uses an accessor to configure the `test` task
    
    [TIP]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    )
    
    // Reasons for DaemonSet events
    const (
    	// SelectingAllReason is added to an event when a DaemonSet selects all Pods.
    	SelectingAllReason = "SelectingAll"
    	// FailedPlacementReason is added to an event when a DaemonSet can't schedule a Pod to a specified node.
    	FailedPlacementReason = "FailedPlacement"
    	// FailedDaemonPodReason is added to an event when the status of a Pod of a DaemonSet is 'Failed'.
    	FailedDaemonPodReason = "FailedDaemonPod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    				case _KindSpecialFinalizer:
    					// don't mark finalized object, but scan it so we
    					// retain everything it points to.
    					spf := (*specialfinalizer)(unsafe.Pointer(sp))
    					// A finalizer can be set for an inner byte of an object, find object beginning.
    					p := s.base() + uintptr(spf.special.offset)/s.elemsize*s.elemsize
    
    					// Mark everything that can be reached from
    					// the object (but *not* the object itself or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "throws NullPointerException when adding an entry with a null key to the property"() {
            when:
            property.put(null, (String) 'v')
            then:
            def ex = thrown NullPointerException
            ex.message == "Cannot add an entry with a null key to a property of type ${type().simpleName}."
        }
    
        def "throws NullPointerException when adding an entry with a null value to the property"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top