Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 318 for impacted (0.17 sec)

  1. operator/pkg/controller/istiocontrolplane/errdict.go

    	// Is the error permanent?
    	transiencePermanentForInstall = "If the error occurred immediately after installation, it is likely permanent."
    )
    
    // Operator specific
    const (
    	// Impact
    	operatorImpactFailedToGetObjectFromAPIServer = "If the error is transient, the impact is low. If permanent, " +
    		"updates for the objects cannot be processed leading to an out of sync control plane."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. test/ddd2.dir/ddd2.go

    // Copyright 2010 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 compiled and then imported by ddd3.go.
    
    package ddd
    
    func Sum(args ...int) int {
    	s := 0
    	for _, v := range args {
    		s += v
    	}
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 316 bytes
    - Viewed (0)
  3. test/interface/private.dir/private1.go

    // 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.
    
    // Imported by private.go, which should not be able to see the private method.
    
    package p
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 389 bytes
    - Viewed (0)
  4. test/fixedbugs/issue22076.go

    // Copyright 2017 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 22076: Couldn't use ":=" to declare names that refer to
    // dot-imported symbols.
    
    package p
    
    import . "bytes"
    
    var _ Reader // use "bytes" import
    
    func f1() {
    	Buffer := 0
    	_ = Buffer
    }
    
    func f2() {
    	for Buffer := range []int{} {
    		_ = Buffer
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 429 bytes
    - Viewed (0)
  5. src/go/types/package.go

    func (pkg *Package) MarkComplete() { pkg.complete = true }
    
    // Imports returns the list of packages directly imported by
    // pkg; the list is in source order.
    //
    // If pkg was loaded from export data, Imports includes packages that
    // provide package-level objects referenced by pkg. This may be more or
    // less than the set of packages directly imported by pkg's source code.
    //
    // If pkg uses cgo and the FakeImportC configuration option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tac_importer_exporter.h

    // See TacModule in how to register it with the module and use it.
    class TacImporter {
     public:
      virtual ~TacImporter() = default;
    
      // Imports and returns the Module for the imported program.
      virtual absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> Import() = 0;
    };
    
    // Interface for exporting a module.
    // Users should implement the interface for exporting the result from TAC
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.h

    // the saved_model_checksum of the SM's fingerprint when it is imported.
    monitoring::GaugeCell<std::string>& SavedModelReadFingerprint();
    
    // Returns "/tensorflow/core/saved_model/read/path" cell, wich contains
    // the saved_model_path of the SM when it is imported.
    monitoring::GaugeCell<std::string>& SavedModelReadPath();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/testdata/depBaseInternal/dep.go

    // Copyright 2023 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.
    
    // depBaseInternal is only imported by depBase.
    
    package depBaseInternal
    
    var Initialized bool
    
    func init() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:46:11 UTC 2023
    - 292 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_resolve.txt

    env GO111MODULE=off
    ! go build p
    stderr 'must be imported as x'
    
    -- p/p.go --
    package p
    
    import (
    	_ "q/y"
    	_ "q/z"
    )
    -- q/vendor/x/x.go --
    package x
    -- q/y/y.go --
    package y
    
    import _ "x"
    -- q/z/z.go --
    package z
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 237 bytes
    - Viewed (0)
  10. test/fixedbugs/issue15470.go

    // Copyright 2016 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 15470: Make sure special-case signatures can
    // be exported and imported w/o problems.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 00:42:13 UTC 2016
    - 288 bytes
    - Viewed (0)
Back to top