Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for necessarily (0.18 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    // shuffle data into the place that the target of the edge expects.
    //
    // The greedy allocator moves values into registers just before they
    // are used, spills registers only when necessary, and spills the
    // value whose next use is farthest in the future.
    //
    // The register allocator requires that a block is not scheduled until
    // at least one of its predecessors have been scheduled. The most recent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	// Flags for device installation
    	DI_QUIETINSTALL        DI_FLAGS = 0x00800000 // don't confuse the user with questions or excess info
    	DI_NOFILECOPY          DI_FLAGS = 0x01000000 // No file Copy necessary
    	DI_FORCECOPY           DI_FLAGS = 0x02000000 // Force files to be copied from install path
    	DI_DRIVERPAGE_ADDED    DI_FLAGS = 0x04000000 // Prop provider added Driver page.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            boolean redundantChange = current == newValue;
    
            // KGP disables `consumable` on detached configurations even though this is not necessary
            boolean disableUsageForDetached = isDetachedConfiguration() && !newValue;
    
            // This property exists to allow KGP to test whether they have properly resolved this deprecation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	// TODO: maybe this could be
    	// sb.SetSize(0)
    	// sb.SetData(nil)
    	// sb.AddAddr(ctxt.Arch, extsym.Sym())
    	// If the size is not 0 to begin with, I don't think the added 8 bytes
    	// of zeros are necessary.
    }
    
    // Xcoffadddynrel adds a dynamic relocation in a XCOFF file.
    // This relocation will be made by the loader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "properties": {
            "apiVersion": {
              "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.",
              "type": "string"
            },
            "fieldsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    
    	sync.RWMutex
    
    	// Before accessing the cacher's cache, wait for the ready to be ok.
    	// This is necessary to prevent users from accessing structures that are
    	// uninitialized or are being repopulated right now.
    	// ready needs to be set to false when the cacher is paused or stopped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    				// Carry on to create the file.
    			default:
    				// Success or some different error.
    				return h, e
    			}
    		}
    	}
    	if createmode == OPEN_EXISTING && access == GENERIC_READ {
    		// Necessary for opening directory handles.
    		attrs |= FILE_FLAG_BACKUP_SEMANTICS
    	}
    	if mode&O_SYNC != 0 {
    		const _FILE_FLAG_WRITE_THROUGH = 0x80000000
    		attrs |= _FILE_FLAG_WRITE_THROUGH
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          keys[size] = key;
          values[size] = value;
          size++;
          return this;
        }
    
        /**
         * Adds the given {@code entry} to the map, making it immutable if necessary. Duplicate keys,
         * according to the comparator (which might be the keys' natural order), are not allowed, and
         * will cause {@link #build} to fail.
         *
         * @since 11.0
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    // controller will use to perform updates. It includes any additional parameters
    // necessary to perform the update for the indicated strategy.
    type StatefulSetUpdateStrategy struct {
    	// Type indicates the type of the StatefulSetUpdateStrategy.
    	// Default is RollingUpdate.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    				ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    			},
    		})
    	}
    
    	if retry && !s3Type { // when we are retrying avoid copying if necessary.
    		gopts := miniogo.GetObjectOptions{}
    		if err := gopts.SetMatchETag(srcObjInfo.ETag); err != nil {
    			return err
    		}
    		if _, err := c.StatObject(ctx, tgtBucket, pathJoin(tgtPrefix, srcObject), gopts); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top