Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 322 for Assignment (0.16 sec)

  1. tensorflow/compiler/jit/get_compiler_ir.cc

          options.detailed_logging);
      // If the embed_ir_in_executable is set, hlo_proto will be dumped in
      // executable. The hlo_proto contains HLO modules and buffer assignment.
      build_options.mutable_debug_options()->set_xla_embed_ir_in_executable(
          xla_embed_ir_in_executable);
      TF_ASSIGN_OR_RETURN(
          std::vector<std::unique_ptr<xla::LocalExecutable>> executables,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

              else_branch = @if_then_and_else, is_stateless = false}
            : (tensor<i1>, !tf_res,
               !tf_res) -> ()
          "tf.If"(%arg1, %var_handle, %id0) {
          // expected-error@above {{Conflicting device assignment for resource}}
              then_branch = @if_then_and_else,
              else_branch = @if_then_and_else,
              is_stateless = false}
            : (tensor<i1>, !tf_res,
               !tf_res) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            when:
            handler.createComponentMetadataProcessor(context).processMetadata(metadata.asImmutable())
    
            then:
            !invoked
        }
    
        def "complains if first parameter type isn't assignment compatible with ComponentMetadataDetails"() {
            when:
            handler.all { String s -> }
    
            then:
            InvalidUserCodeException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    				}
    			}
    		}
    		for name := range intersection {
    			out[c.Name()].Insert(name)
    		}
    	}
    
    	return out, nil
    }
    
    // build inner allows assigning to b (assignment to receiver would be ineffective)
    func build(b *builder) (out echo.Instances, err error) {
    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy echo instances ===")
    	defer func() {
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/sync/sync.go

    		// User intervention is required in this case, as this is most likely due
    		// to the user mucking around with their VM aliases on the side.
    	} else {
    		klog.FromContext(ctx).V(4).Info("Node CIDR range is matches cloud assignment", "node", klog.KObj(node), "podCIDR", node.Spec.PodCIDR)
    	}
    	return nil
    }
    
    // updateNodeFromAlias updates the node from the cloud allocated
    // alias.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. src/net/udpsock.go

    // local system including the group, multicast IP address.
    // If ifi is nil, ListenMulticastUDP uses the system-assigned
    // multicast interface, although this is not recommended because the
    // assignment depends on platforms and sometimes it might require
    // routing configuration.
    // If the Port field of gaddr is 0, a port number is automatically
    // chosen.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/cpu_manager.go

    		}
    	}
    
    	// Loop through the CPUManager state. Remove any state for containers not
    	// in the `activeContainers` list built above.
    	assignments := m.state.GetCPUAssignments()
    	for podUID := range assignments {
    		for containerName := range assignments[podUID] {
    			if _, ok := activeContainers[podUID][containerName]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  8. src/cmd/compile/internal/types2/issues_test.go

    	if res1 != res2 {
    		t.Errorf("got %s (%p) != %s (%p)", res1, res2, res1, res2)
    	}
    }
    
    // This tests that uses of existing vars on the LHS of an assignment
    // are Uses, not Defs; and also that the (illegal) use of a non-var on
    // the LHS of an assignment is a Use nonetheless.
    func TestIssue7827(t *testing.T) {
    	const src = `
    package p
    func _() {
    	const w = 1        // defs w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/go/types/issues_test.go

    	if res1 != res2 {
    		t.Errorf("got %s (%p) != %s (%p)", res1, res2, res1, res2)
    	}
    }
    
    // This tests that uses of existing vars on the LHS of an assignment
    // are Uses, not Defs; and also that the (illegal) use of a non-var on
    // the LHS of an assignment is a Use nonetheless.
    func TestIssue7827(t *testing.T) {
    	const src = `
    package p
    func _() {
    	const w = 1        // defs w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/symbolbuilder.go

    	return sb.addSymRef(tgt, 0, objabi.R_SIZE, arch.PtrSize)
    }
    
    // GenAddAddrPlusFunc returns a function to be called when capturing
    // a function symbol's address. In later stages of the link (when
    // address assignment is done) when doing internal linking and
    // targeting an executable, we can just emit the address of a function
    // directly instead of generating a relocation. Clients can call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top