Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for variable2 (0.24 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

    * Remove environment variables and internal Kubernetes Docker labels from cAdvisor Prometheus metric labels. ([#31064](https://github.com/kubernetes/kubernetes/pull/31064), [@grobie](https://github.com/grobie))
        * Old behavior:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// Type name printed in the below error will be of the form "<uuid>.nestedInList.@idx".
    
    				// Developers may not cast the type of variables as a string:
    				"string(type(self.nestedInList[0])).endsWith('.nestedInList.@idx')": "found no matching overload for 'string' applied to '(type",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface VarTypeMismatchOnOverride : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VarTypeMismatchOnOverride::class
            val variable: KaCallableSymbol
            val superVariable: KaCallableSymbol
        }
    
        interface VarOverriddenByVal : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VarOverriddenByVal::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // This is v1 ref variable semantics in the TFLite runtime.
      bool is_variable = false;
      for (auto& use : value.getUses()) {
        is_variable = IsStatefulOperand(use.getOwner(), use.getOperandNumber());
        if (is_variable) {
          break;
        }
      }
      // The value is used as a variable if produced by an op with "tfl.is_variable"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtNamedDeclaration>(firDiagnostic, token), KaFirDiagnostic.PropertyTypeMismatchOnOverride
    
    internal class VarTypeMismatchOnOverrideImpl(
        override val variable: KaCallableSymbol,
        override val superVariable: KaCallableSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    vmConfig: description: Configuration for a Wasm VM. properties: env: description: Specifies environment variables to be injected to this VM. items: properties: name: description: Name of the environment variable. maxLength: 256 minLength: 1 type: string value: description: Value for the environment variable. maxLength: 2048 type: string valueFrom: description: Source for the environment variable's value. enum: - INLINE - HOST type: string required: - name type: object x-kubernetes-validations: - message:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	// Deprecated: ErrWriteAfterFlush is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrWriteAfterFlush = errors.New("unused")
    )
    
    // A Handler responds to an HTTP request.
    //
    // [Handler.ServeHTTP] should write reply headers and data to the [ResponseWriter]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/reflect/value.go

    					" returned value obtained from unexported field")
    			}
    			if typ.Size() == 0 {
    				continue
    			}
    
    			// Convert v to type typ if v is assignable to a variable
    			// of type t in the language spec.
    			// See issue 28761.
    			//
    			//
    			// TODO(mknyszek): In the switch to the register ABI we lost
    			// the scratch space here for the register cases (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	IFF_POINTTOPOINT = 8
    	IFF_MULTICAST    = 16
    )
    
    const SIO_GET_INTERFACE_LIST = 0x4004747F
    
    // TODO(mattn): SockaddrGen is union of sockaddr/sockaddr_in/sockaddr_in6_old.
    // will be fixed to change variable type as suitable.
    
    type SockaddrGen [24]byte
    
    type InterfaceInfo struct {
    	Flags            uint32
    	Address          SockaddrGen
    	BroadcastAddress SockaddrGen
    	Netmask          SockaddrGen
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

       */
      @SuppressWarnings("serial") // This class is never serialized.
      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
         * It will require more memory but will reduce indirection.
         */
    
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top