Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,243 for behaviors (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/GetInputFilesVisitor.java

                normalizer,
                new PropertyFileCollection(ownerDisplayName, propertyName, "input", actualValue),
                value,
                behavior,
                normalizeDirectorySensitivity(normalizer, directorySensitivity),
                lineEndingSensitivity
            ));
            if (behavior.shouldSkipWhenEmpty()) {
                hasSourceFiles = true;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

                    @Override
                    public void visitInputFileProperty(String propertyName, InputBehavior behavior, InputFileValueSupplier value) {
                        if (behavior.shouldSkipWhenEmpty()) {
                            visitor.visitInputFileProperty(propertyName, behavior, value);
                        }
                    }
                }));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-operator/values.yaml

      # used to pull operator image. Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent.
      imagePullPolicy: ""
    
      # Used to replace istioNamespace to support operator watch multiple namespaces.
      watchedNamespaces: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/godebug/godebug.go

    //			disallow HTTP/2
    //			...
    //		}
    //		...
    //	}
    //
    // Each time a non-default setting causes a change in program behavior,
    // code must call [Setting.IncNonDefault] to increment a counter that can
    // be reported by [runtime/metrics.Read]. The call must only happen when
    // the program executes a non-default behavior, not just when the setting
    // is set to a non-default value. This is occasionally (but very rarely)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/os/signal/doc.go

    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    By default, a synchronous signal is converted into a run-time panic. A
    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    SIGTTOU signal gets the system default behavior (these signals are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2beta1/conversion.go

    		var behavior autoscaling.HorizontalPodAutoscalerBehavior
    		if err := json.Unmarshal([]byte(behaviorEnc), &behavior); err == nil && behavior != (autoscaling.HorizontalPodAutoscalerBehavior{}) {
    			// only move well-formed data from annotations to fields
    			out.Spec.Behavior = &behavior
    		}
    	}
    
    	// drop round-tripping annotations after converting to internal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/crypto/subtle/constant_time.go

    		return 0
    	}
    
    	var v byte
    
    	for i := 0; i < len(x); i++ {
    		v |= x[i] ^ y[i]
    	}
    
    	return ConstantTimeByteEq(v, 0)
    }
    
    // ConstantTimeSelect returns x if v == 1 and y if v == 0.
    // Its behavior is undefined if v takes any other value.
    func ConstantTimeSelect(v, x, y int) int { return ^(v-1)&x | (v-1)&y }
    
    // ConstantTimeByteEq returns 1 if x == y and 0 otherwise.
    func ConstantTimeByteEq(x, y uint8) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 01:54:27 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: "What did you expect to see?"
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeTraverser.java

       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
       * @deprecated Use {@link com.google.common.graph.Traverser#depthFirstPreOrder} instead, which has
       *     the same behavior.
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top