Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 255 for paused (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    	if errs := structuralschema.ValidateStructural(nil, ss); len(errs) > 0 {
    		return false, errs.ToAggregate()
    	}
    	pruned := ss.DeepCopy()
    	if err := structuraldefaulting.PruneDefaults(pruned); err != nil {
    		return false, err
    	}
    	return !reflect.DeepEqual(ss, pruned), nil
    }
    
    // requireAtomicSetType returns true if the old CRD spec as at least one x-kubernetes-list-type=set with non-atomic items type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Environment variable utilities:
    //   GetEnv()             - gets the value of an environment variable.
    //   BoolFromGTestEnv()   - parses a bool environment variable.
    //   Int32FromGTestEnv()  - parses an Int32 environment variable.
    //   StringFromGTestEnv() - parses a string environment variable.
    
    #include <ctype.h>   // for isspace, etc
    #include <stddef.h>  // for ptrdiff_t
    #include <stdlib.h>
    #include <stdio.h>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    // Arguments are passed in registers, but the space for those arguments are allocated
    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    // Defined as ABIInternal since they do not use the stack-based Go ABI.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    		// `args` arg to Run, without Cobra's interference.
    		DisableFlagParsing: true,
    		SilenceUsage:       true,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			// initial flag parse, since we disable cobra's flag parsing
    			if err := cleanFlagSet.Parse(args); err != nil {
    				return fmt.Errorf("failed to parse kubelet flag: %w", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    //
    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    // * Objects are always passed around as pointers to opaque structs
    //   and these structs are allocated/deallocated via the API.
    // * TF_Status holds error information.  It is an object type
    //   and therefore is passed around as a pointer to an opaque
    //   struct as mentioned above.
    // * Every call that has a TF_Status* argument clears it on success
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    		}
    		if c.activeCall.CompareAndSwap(x, x|1) {
    			break
    		}
    	}
    	if x != 0 {
    		// io.Writer and io.Closer should not be used concurrently.
    		// If Close is called while a Write is currently in-flight,
    		// interpret that as a sign that this Close is really just
    		// being used to break the Write and/or clean up resources and
    		// avoid sending the alertCloseNotify, which may block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
       * @param declaration The type variable in the context of a parameterized type. Used to infer type
       *     bound when {@code formalType} is a wildcard with implicit upper bound.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToken.java

       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
       * @param declaration The type variable in the context of a parameterized type. Used to infer type
       *     bound when {@code formalType} is a wildcard with implicit upper bound.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	-coverprofile cover.out
    	    Write a coverage profile to the file after all tests have passed.
    	    Sets -cover.
    
    	-cpuprofile cpu.out
    	    Write a CPU profile to the specified file before exiting.
    	    Writes test binary as -c would.
    
    	-memprofile mem.out
    	    Write an allocation profile to the file after all tests have passed.
    	    Writes test binary as -c would.
    
    	-memprofilerate n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	if u == nil {
    		panic("reflect: nil type passed to Type.Implements")
    	}
    	if u.Kind() != Interface {
    		panic("reflect: non-interface type passed to Type.Implements")
    	}
    	return implements(u.common(), t.common())
    }
    
    func (t *rtype) AssignableTo(u Type) bool {
    	if u == nil {
    		panic("reflect: nil type passed to Type.AssignableTo")
    	}
    	uu := u.common()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top