Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 494 for addsym (0.07 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequeststatus.go

    // apply.
    func CertificateSigningRequestStatus() *CertificateSigningRequestStatusApplyConfiguration {
    	return &CertificateSigningRequestStatusApplyConfiguration{}
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodeselectorterm.go

    // apply.
    func NodeSelectorTerm() *NodeSelectorTermApplyConfiguration {
    	return &NodeSelectorTermApplyConfiguration{}
    }
    
    // WithMatchExpressions adds the given value to the MatchExpressions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. src/time/time.go

    	}
    	return t.ext
    }
    
    // unixSec returns the time's seconds since Jan 1 1970 (Unix time).
    func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
    
    // addSec adds d seconds to the time.
    func (t *Time) addSec(d int64) {
    	if t.wall&hasMonotonic != 0 {
    		sec := int64(t.wall << 1 >> (nsecShift + 1))
    		dsec := sec + d
    		if 0 <= dsec && dsec <= 1<<33-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/NetworkConnections.java

      @CanIgnoreReturnValue
      N removeOutEdge(E edge);
    
      /**
       * Add {@code edge} to the set of incoming edges. Implicitly adds {@code node} as a predecessor.
       */
      void addInEdge(E edge, N node, boolean isSelfLoop);
    
      /** Add {@code edge} to the set of outgoing edges. Implicitly adds {@code node} as a successor. */
      void addOutEdge(E edge, N node);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

                model {
                    baseBinary(BinarySpec) {
                    }
                }
            }
    
            then:
            realize("baseBinary") instanceof BinarySpec
        }
    
        def "adds a 'binaries' container to the project model"() {
            when:
            dsl {
                apply plugin: BinaryBasePlugin
            }
    
            then:
            realizeBinaries() != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginCollection.java

        /**
         * Adds an {@code Action} to be executed when a plugin is added to this collection.
         *
         * @param action The action to be executed
         * @return the supplied action
         */
        @SuppressWarnings("UnusedDeclaration")
        Action<? super T> whenPluginAdded(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionstatus.go

    // apply.
    func CustomResourceDefinitionStatus() *CustomResourceDefinitionStatusApplyConfiguration {
    	return &CustomResourceDefinitionStatusApplyConfiguration{}
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         */
        void setSystemProperties(Map<String, ?> properties);
    
        /**
         * Adds some system properties to use for the process.
         *
         * @param properties The system properties. Must not be null.
         * @return this
         */
        JavaForkOptions systemProperties(Map<String, ?> properties);
    
        /**
         * Adds a system property to use for the process.
         *
         * @param name The name of the property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/workflow/doc_test.go

    			d, ok := data.(myPhaseData)
    			if !ok {
    				return errors.New("invalid RunData type")
    			}
    
    			// implement your phase logic...
    			fmt.Printf("%v\n", d.Data())
    			return nil
    		},
    	}
    
    	// Adds the new phases to the workflow
    	// Phases will be executed the same order they are added to the workflow
    	myWorkflowRunner.AppendPhase(myPhase1)
    	myWorkflowRunner.AppendPhase(myPhase2)
    }
    
    func ExampleRunner_Run() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 07:27:25 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  10. internal/event/rulesmap.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package event
    
    // RulesMap - map of rules for every event name.
    type RulesMap map[Name]Rules
    
    // add - adds event names, prefixes, suffixes and target ID to rules map.
    func (rulesMap RulesMap) add(eventNames []Name, pattern string, targetID TargetID) {
    	rules := make(Rules)
    	rules.Add(pattern, targetID)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top