Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 673 for impacted (0.28 sec)

  1. tensorflow/compiler/mlir/python/mlir.h

    //   exported_names_str: Comma-separated list of names to export.
    //                       Empty means "export all".
    //
    // Returns:
    //   A string of textual MLIR representing the raw imported SavedModel.
    std::string ExperimentalConvertSavedModelToMlir(
        const std::string &saved_model_path, const std::string &exported_names_str,
        bool show_debug_info, TF_Status *status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. test/fixedbugs/bug506.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo caused an undefined symbol reference building hash functions
    // for an imported struct with unexported fields.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 308 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.go

    	return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], 0, black, nopos}, imported, false}
    }
    
    // Imported returns the package that was imported.
    // It is distinct from Pkg(), which is the package containing the import statement.
    func (obj *PkgName) Imported() *Package { return obj.imported }
    
    // A Const represents a declared constant.
    type Const struct {
    	object
    	val constant.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. test/interface/recursive1.dir/recursive1.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Mutually recursive type definitions imported and used by recursive1.go.
    
    package p
    
    type I1 interface {
    	F() I2
    }
    
    type I2 interface {
    	I1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 304 bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

    	if !ok {
    		return nil
    	}
    	return &due
    }
    
    // isCompacted returns whether an entry is compacted.
    // Returns false if not found.
    func (d *dataUsageCache) isCompacted(h dataUsageHash) bool {
    	due, ok := d.Cache[h.Key()]
    	if !ok {
    		return false
    	}
    	return due.Compacted
    }
    
    // findChildrenCopy returns a copy of the children of the supplied hash.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. releasenotes/notes/es-drop-beta.yaml

      `EndpointSlice` `v1` is automatically used on Kubernetes 1.21+, while `Endpoints` is used on older versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 09 02:21:19 UTC 2023
    - 484 bytes
    - Viewed (0)
  8. test/fixedbugs/issue32922.go

    // license that can be found in the LICENSE file.
    
    // This directory contains a pair of packages that triggers a compiler
    // error in gccgo (problem with the way inlinable call expressions are
    // imported). See issue 32922 for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 08 13:20:23 UTC 2019
    - 377 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/importdecl1/importdecl1a.go

    // license that can be found in the LICENSE file.
    
    // Test case for issue 8969.
    
    package importdecl1
    
    import "go/ast"
    import . "unsafe"
    
    var _ Pointer // use dot-imported package unsafe
    
    // Test cases for issue 23914.
    
    type A interface {
    	// Methods m1, m2 must be type-checked in this file scope
    	// even when embedded in an interface in a different
    	// file of the same package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 521 bytes
    - Viewed (0)
  10. test/fixedbugs/bug367.go

    // rundir
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 1536: bug when handling imported interfaces with
    // private methods.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 266 bytes
    - Viewed (0)
Back to top