Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 74 for describeTo (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Both changes could cause script compilation errors. See the https://github.com/gradle/kotlin-dsl-samples/releases/tag/v1.0.2#breaking-changes[Gradle Kotlin DSL release notes] for more information and how to fix builds broken by the changes described above.
    
    Miscellaneous::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	taskID TaskID
    	name   string
    }
    
    // rangeType is a way to classify special ranges of time.
    //
    // These typically correspond 1:1 with "Begin" events, but
    // they may have an optional subtype that describes the range
    // in more detail.
    type rangeType struct {
    	typ  event.Type // "Begin" event.
    	desc stringID   // Optional subtype.
    }
    
    // makeRangeType constructs a new rangeType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // progression of the loop cond computation at runtime with significant
        // overhead.  Specifically, we look for the below pattern and do not cluster
        // in this Identity to avoid the described issue.  Since Identity has low
        // execution cost in native TF, the fact that this heuristic gives up these
        // special Identity nodes as candidates should not harm any performance.  If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    			break
    		}
    		reg := uint8(bits.TrailingZeros64(mask))
    		mask &^= 1 << reg
    
    		storage = append(storage, s.registers[reg].String())
    	}
    	return strings.Join(storage, ",")
    }
    
    // A VarLoc describes the storage for part of a user variable.
    type VarLoc struct {
    	// The registers this variable is available in. There can be more than
    	// one in various situations, e.g. it's being moved between registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    		Scheduler: scheduler,
    	}
    	if err := ipvs.AddVirtualServer(&vs); err != nil {
    		logger.Error(err, "Could not create dummy VS", "scheduler", scheduler)
    		return err
    	}
    
    	// To overcome the BUG described above we check that the VS is *really* added.
    	vservers, err = ipvs.GetVirtualServers()
    	if err != nil {
    		logger.Error(err, "ipvs.GetVirtualServers")
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg (MOVDconst [c])) => (MOVDconst [int64(int32(c))])
    (MOVWZreg (MOVDconst [c])) => (MOVDconst [int64(uint32(c))])
    
    // Implement clrsldi and clrslwi extended mnemonics as described in
    // ISA 3.0 section C.8. AuxInt field contains values needed for
    // the instructions, packed together since there is only one available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    For more about using 'go get' to update the minimum Go version and
    suggested Go toolchain, see https://go.dev/doc/toolchain.
    
    For more about specifying packages, see 'go help packages'.
    
    This text describes the behavior of get using modules to manage source
    code and dependencies. If instead the go command is running in GOPATH
    mode, the details of get's flags and effects change, as does 'go help get'.
    See 'go help gopath-get'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    // prologue containing the include directories and file names,
    // described in section 6.2.4 of the DWARF 4 standard. It walks the
    // filepaths for the unit to discover any common directories, which
    // are emitted to the directory table first, then the file table is
    // emitted after that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		createInt = 1
    	}
    	return KeyctlInt(KEYCTL_GET_KEYRING_ID, id, createInt, 0, 0)
    }
    
    // KeyctlSetperm implements the KEYCTL_SETPERM command. The perm value is the
    // key handle permission mask as described in the "keyctl setperm" section of
    // http://man7.org/linux/man-pages/man1/keyctl.1.html.
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_setperm.3.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // serves to identify the test routine.
    //
    // Within these functions, use the Error, Fail or related methods to signal failure.
    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    // and give that file a name ending in "_test.go".
    // The file will be excluded from regular
    // package builds but will be included when the "go test" command is run.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top