Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 155 for Preferred (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Usually, a rule is specifically written to enrich metadata of one specific module and hence the `withModule` API should be preferred.
    
    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. configure.py

          check_success=os.path.exists,
          resolve_symlinks=True,
          error_msg=(
              'Invalid clang path. %s cannot be found. Note that Clang is now'
              'preferred compiler. You may use MSVC by removing --config=win_clang'
          ),
      )
    
      write_action_env_to_bazelrc('CLANG_COMPILER_PATH', clang_compiler_path)
      write_to_bazelrc(f'build --repo_env=CC="{clang_compiler_path}"')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $-8589869055, R5            // 3fe0fffe63ff00017bff83e463ff00017cbf2a14 or 0602000138a50001
    
    	//TODO: this compiles to add r5,r6,r0. It should be addi r5,r6,0.
    	//      this is OK since r0 == $0, but the latter is preferred.
    	ADD $0, R6, R5             	// 7ca60214
    
            //TODO: the assembler rewrites these into ADDIS $19, R5, Rx and ADD $-10617, Rx, Rx, but the test only sees the first ADDIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    			objectSuccessorModTime: time.Now().UTC().Add(-90 * 24 * time.Hour),
    			expectedAction:         DeleteVersionAction,
    		},
    		{
    			// DelMarkerExpiration is preferred since object age is past both transition and expiration days.
    			inputConfig: `<LifecycleConfiguration>
                                <Rule>
                                  <ID>DelMarkerExpiration with Transition</ID>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        only for noncommercial distribution and only if you received the
        program in object code or executable form with such an offer, in
        accord with Subsection b above.)
    
    The source code for a work means the preferred form of the work for
    making modifications to it. For an executable work, complete source code
    means all the source code for all modules it contains, plus any
    associated interface definition files, plus the scripts used to control
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. src/time/format.go

    // date strings that occur in the first 9 days of a given month.
    // In general [RFC1123Z] should be used instead of [RFC1123] for servers
    // that insist on that format, and [RFC3339] should be preferred for new protocols.
    // [RFC3339], [RFC822], [RFC822Z], [RFC1123], and [RFC1123Z] are useful for formatting;
    // when used with time.Parse they do not accept all the time formats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager_test.go

    			},
    			"devwithouttopology": {
    				ID: "dev5",
    			},
    		},
    	}
    
    	fakeAffinity, _ := bitmask.NewBitMask(2)
    	fakeHint := topologymanager.TopologyHint{
    		NUMANodeAffinity: fakeAffinity,
    		Preferred:        true,
    	}
    	testManager := ManagerImpl{
    		topologyAffinityStore: topologymanager.NewFakeManagerWithHint(&fakeHint),
    		allDevices:            allDevices,
    	}
    
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    )
    
    const (
    	// R bit option in prefixed load/store/add D-form operations
    	PFX_R_ABS   = 0 // Offset is absolute
    	PFX_R_PCREL = 1 // Offset is relative to PC, RA should be 0
    )
    
    const (
    	// The preferred hardware nop instruction.
    	NOP = 0x60000000
    )
    
    type Optab struct {
    	as    obj.As // Opcode
    	a1    uint8  // p.From argument (obj.Addr). p is of type obj.Prog.
    	a2    uint8  // p.Reg argument (int16 Register)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	// [ResponseWriter.Write]) has no effect unless the HTTP status code was of the
    	// 1xx class or the modified headers are trailers.
    	//
    	// There are two ways to set Trailers. The preferred way is to
    	// predeclare in the headers which trailers you will later
    	// send by setting the "Trailer" header to the names of the
    	// trailer keys which will come later. In this case, those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top