Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,964 for importing (0.14 sec)

  1. docs/en/docs/deployment/manually.md

    <font color="#3465A4">INFO    </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
    
     ╭─ <font color="#8AE234"><b>Python module file</b></font> ─╮
     │                      │
     │  🐍 main.py          │
     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/go/importer/importer_test.go

    		}
    	})
    
    	t.Run("LookupCustom", func(t *testing.T) {
    		// TODO(mdempsky): Decide whether to remove this test, or to fix
    		// support for it in unified IR. It's not clear that we actually
    		// need to support importing "math/big" as "math/bigger", for
    		// example. cmd/link no longer supports that.
    		if true /* was buildcfg.Experiment.Unified */ {
    			t.Skip("not supported by GOEXPERIMENT=unified; see go.dev/cl/406319")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/problems-api-usage/sample-ide/src/main/java/org/gradle/sample/SampleIde.java

            String workingDir = args.length > 0 ? args[0] : System.getProperty("user.dir");
            String taskPath = args.length > 1 ? args[1] : ":sample-project:assemble";
    
            System.out.println("=== Importing project from " + workingDir + " ===");
            SampleIde main = new SampleIde(workingDir, taskPath);
    
            System.out.println("=== Running task " + taskPath + " on imported project ===");
            main.runBuild();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    // Functionalities for importing MLIR ModuleOp from TensorFlow SavedModel.
    
    #ifndef TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_SAVED_MODEL_IMPORT_H_
    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_STABLEHLO_CC_SAVED_MODEL_IMPORT_H_
    
    #include <string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    		return nil, nil
    	}
    
    	// Note: (*"encoding/json".Decoder).Decode, (* "encoding/gob".Decoder).Decode
    	// and (* "encoding/xml".Decoder).Decode are methods and can be a typeutil.Callee
    	// without directly importing their packages. So we cannot just skip this package
    	// when !analysisutil.Imports(pass.Pkg, "encoding/...").
    	// TODO(taking): Consider using a prepass to collect typeutil.Callees.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/testdata/map2.go

    // Copyright 2019 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.
    
    // This file is like map.go, but instead of importing chans, it contains
    // the necessary functionality at the end of the file.
    
    // Package orderedmap provides an ordered map, implemented as a binary tree.
    package orderedmap
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 12:49:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/map1.go

    // Copyright 2019 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.
    
    // This file is like map.go2, but instead if importing chans, it contains
    // the necessary functionality at the end of the file.
    
    // Package orderedmap provides an ordered map, implemented as a binary tree.
    package orderedmap
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istioctl/kube.go

    // https://github.com/istio/istio/issues/37324
    var invokeMutex sync.Mutex
    
    type kubeComponent struct {
    	config     Config
    	kubeconfig string
    }
    
    // Filenamer is an interface to avoid importing kubecluster package, instead build our own interface
    // to extract kube context
    type Filenamer interface {
    	Filename() string
    }
    
    func newKube(ctx resource.Context, config Config) (Instance, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	// Note: (time.Time).Format is a method and can be a typeutil.Callee
    	// without directly importing "time". So we cannot just skip this package
    	// when !analysisutil.Imports(pass.Pkg, "time").
    	// TODO(taking): Consider using a prepass to collect typeutil.Callees.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
    	"k8s.io/apiserver/plugin/pkg/audit/fake"
    	// Importing just for the schema definitions.
    	_ "k8s.io/apiserver/plugin/pkg/audit/webhook"
    )
    
    var (
    	defaultConfig = Config{
    		MaxBatchSize: 4 * 1024 * 1024,
    		MaxEventSize: 100 * 1024,
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
Back to top