Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 307 for OTHER (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Default permissions differ for files and directories:
    
    * *file*: read & write for *owner*, read for *group*, read for *other* (*0644*, *rw-r--r--*)
    * *directory*: read, write & execute for *owner*, read & execute for *group*, read & execute for *other* (*0755*, *rwxr-xr-x*)
    
    [[sec:moving_files_example]]
    == Moving files and directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	StackOffset
    }
    
    func (loc VarLoc) absent() bool {
    	return loc.Registers == 0 && !loc.onStack()
    }
    
    func (loc VarLoc) intersect(other VarLoc) VarLoc {
    	if !loc.onStack() || !other.onStack() || loc.StackOffset != other.StackOffset {
    		loc.StackOffset = 0
    	}
    	loc.Registers &= other.Registers
    	return loc
    }
    
    var BlockStart = &Value{
    	ID:  -10000,
    	Op:  OpInvalid,
    	Aux: StringToAux("BlockStart"),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Each variable is defined as a named CEL expression.
    	// The variables defined here will be available under `variables` in other expressions of the policy
    	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
    	//
    	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Each variable is defined as a named CEL expression.
      // The variables defined here will be available under `variables` in other expressions of the policy
      // except MatchConditions because MatchConditions are evaluated before the rest of the policy.
      //
      // The expression of a variable can refer to other variables defined earlier in the list but not those after.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    type RowConditionType string
    
    // These are valid conditions of a row. This list is not exhaustive and new conditions may be
    // included by other resources.
    const (
    	// RowCompleted means the underlying resource has reached completion and may be given less
    	// visual priority than other resources.
    	RowCompleted RowConditionType = "Completed"
    )
    
    type ConditionStatus string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		// if one or the other has a directive marker,
    		// then we need to consider that before looking at the individual keys,
    		// since a directive operates on the whole map.
    		if okLeft || okRight {
    			// if one has a directive marker and the other doesn't,
    			// then we have a conflict, since one is deleting or replacing the whole map,
    			// and the other is doing things to individual keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	}
    	return podsAdded, stateOut, nodeInfoOut, nil
    }
    
    // RunPreScorePlugins runs the set of configured pre-score plugins. If any
    // of these plugins returns any status other than Success/Skip, the given pod is rejected.
    // When it returns Skip status, other fields in status are just ignored,
    // and coupled Score plugin will be skipped in this scheduling cycle.
    func (f *frameworkImpl) RunPreScorePlugins(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    with the <<configuration_cache.adoc#config_cache:plugins:core,configuration cache>>.
    
    The native software plugins add support for building native software components, such as executables or shared libraries, from code written in C++, C and other languages. While many excellent build tools exist for this space of software development, Gradle offers developers its trademark power and flexibility together with dependency management practices more traditionally found in the JVM development space....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Each variable is defined as a named CEL expression.
    	// The variables defined here will be available under `variables` in other expressions of the policy
    	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
    	//
    	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Note that they are only supported wrapped in a `Provider`.
    
    * Nested values
    +
    Custom types that don’t conform to the other two categories but have their own properties that are inputs or outputs. In effect, the task inputs or outputs are nested inside these custom types.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top