Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 257 for notA (0.05 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code HashMap} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead.
       *
       * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link #newEnumMap} instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code HashMap} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead.
       *
       * <p><b>Note:</b> if {@code K} is an {@code enum} type, use {@link #newEnumMap} instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // packages named on the command line has a go.mod file, it must not contain
    // directives (replace and exclude) that would cause it to be interpreted
    // differently than if it were the main module. The module must not require
    // a higher version of itself.
    //
    // - Vendor directories are not used in any module. (Vendor directories are not
    // included in the module zip files downloaded by 'go install'.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <name>childProjectUrlInheritAppendPath</name>
              <version>4.0.0+</version>
              <description>
                <![CDATA[
                When children inherit from project's url, append path or not? Note: While the type
                of this field is {@code String} for technical reasons, the semantic type is actually
                {@code Boolean}
                <p><b>Default value is</b>: {@code true}</p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. src/reflect/value.go

    			if v.typ().IfaceIndir() {
    				// This is a pointer to a not-in-heap object. ptr points to a uintptr
    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    				// that at least it is a valid pointer (not just an integer stored in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // Kubernetes only mounts on /etc/hosts if:
    // - container is not an infrastructure (pause) container
    // - container is not already mounting on /etc/hosts
    // Kubernetes will not mount /etc/hosts if:
    // - when the Pod sandbox is being created, its IP is still unknown. Hence, PodIP will not have been set.
    // - Windows pod contains a hostProcess container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	if len(p.CXXFiles) > 0 && !p.UsesCgo() && !p.UsesSwig() {
    		setError(fmt.Errorf("C++ source files not allowed when not using cgo or SWIG: %s", strings.Join(p.CXXFiles, " ")))
    		return
    	}
    	if len(p.MFiles) > 0 && !p.UsesCgo() && !p.UsesSwig() {
    		setError(fmt.Errorf("Objective-C source files not allowed when not using cgo or SWIG: %s", strings.Join(p.MFiles, " ")))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

    if [[ "${ENABLE_CLUSTER_AUTOSCALER}" == "true" ]]; then
      if [[ -z $AUTOSCALER_MIN_NODES ]]; then
        echo "AUTOSCALER_MIN_NODES not set."
        exit 1
      fi
      if [[ -z $AUTOSCALER_MAX_NODES ]]; then
        echo "AUTOSCALER_MAX_NODES not set."
        exit 1
      fi
    fi
    
    # These prefixes must not be prefixes of each other, so that they can be used to
    # detect mutually exclusive sets of nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	if _, err := os.Stat(src); os.IsNotExist(err) {
    		// If the file does not exist, there are no exported
    		// functions, and we do not install anything.
    		// TODO(rsc): Once we know that caching is rebuilding
    		// at the right times (not missing rebuilds), here we should
    		// probably delete the installed header, if any.
    		if cfg.BuildX {
    			sh.ShowCmd("", "# %s not created", src)
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    			cpuprof.lostAtomic++
    			return
    		}
    	}
    
    	// Profiling runs concurrently with GC, so it must not allocate.
    	// Set a trap in case the code does allocate.
    	// Note that on windows, one thread takes profiles of all the
    	// other threads, so mp is usually not getg().m.
    	// In fact mp may not even be stopped.
    	// See golang.org/issue/17165.
    	getg().m.mallocing++
    
    	var u unwinder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top