Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 142 for flagstr (0.12 sec)

  1. tests/binary/binaries_test.go

    		validateField(t, "GitTag", verInfo.GitTag)
    	})
    }
    
    var (
    	nonGoBinaries      = sets.New("ztunnel", "envoy")
    	nonVersionBinaries = sets.New("client", "server")
    )
    
    // Test that flags do not get polluted with unexpected flags
    func TestFlags(t *testing.T) {
    	runBinariesTest(t, func(t *testing.T, name string) {
    		if nonGoBinaries.Contains(name) {
    			return
    		}
    		cmd := path.Join(*releasedir, name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/features/features.go

    	deprecatedMsg := map[string]string{}
    	for k := range features {
    		featureSpec, ok := (*f)[k]
    		if !ok {
    			// This case should never happen, it is implemented only as a sentinel
    			// for removal of flags executed when flags are still in use (always before deprecate, then after one cycle remove)
    			deprecatedMsg[k] = fmt.Sprintf("Unknown feature gate flag: %s", k)
    		}
    
    		if featureSpec.PreRelease == featuregate.Deprecated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  4. releasenotes/notes/47740.yaml

      This promotion should not result in any loss of functionality. However, the request is now sent based on xDS instead of HTTP, and we have introduced a 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 443 bytes
    - Viewed (0)
  5. src/os/dir_windows.go

    	var flags uint32
    	err := windows.GetVolumeInformationByHandle(h, nil, 0, &d.vol, nil, &flags, nil, 0)
    	if err != nil {
    		d.vol = 0 // Set to zero in case Windows writes garbage to it.
    		// If we can't get the volume information, we can't use os.SameFile,
    		// but we can still read the directory entries.
    		return
    	}
    	if flags&windows.FILE_SUPPORTS_OBJECT_IDS == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/bootstrap/option/instances.go

    	return newOptionOrSkipIfZero("meta_json_str", meta).withConvert(nodeMetadataConverter(meta, rawMeta))
    }
    
    func RuntimeFlags(flags map[string]any) Instance {
    	return newOptionOrSkipIfZero("runtime_flags", flags).withConvert(jsonConverter(flags))
    }
    
    func DiscoveryAddress(value string) Instance {
    	return newOption("discovery_address", value)
    }
    
    func XDSRootCert(value string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/cmd/objdump/objdump_test.go

    		os.Setenv("GOARCH", f[1])
    		goarch = f[1]
    	}
    
    	hash := notsha256.Sum256([]byte(fmt.Sprintf("%v-%v-%v-%v", srcfname, flags, printCode, printGnuAsm)))
    	tmp := t.TempDir()
    	hello := filepath.Join(tmp, fmt.Sprintf("hello-%x.exe", hash))
    	args := []string{"build", "-o", hello}
    	args = append(args, flags...)
    	args = append(args, srcfname)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_platform_info.h

        const DeviceType& platform_device_type);
    
    // Builds a DeviceCompiler that uses xla::LocalClient using `platform_info` and
    // `compilation_device_type` (in non-TPU case) and sets *xla_device_compiler to
    // point to it. Uses flags from `MarkForCompilationPassFlags` for configuring
    // the persistor used in the DeviceCompiler. The platform ID from
    // `platform_info` must not be null in CPU case.
    Status BuildXlaDeviceCompiler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/syscall/syscall_wasip1.go

    func SetNonblock(fd int, nonblocking bool) error {
    	flags, err := fd_fdstat_get_flags(fd)
    	if err != nil {
    		return err
    	}
    	if nonblocking {
    		flags |= FDFLAG_NONBLOCK
    	} else {
    		flags &^= FDFLAG_NONBLOCK
    	}
    	errno := fd_fdstat_set_flags(int32(fd), flags)
    	return errnoErr(errno)
    }
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-discovery/app/cmd.go

    		Long:         "Istio Pilot provides mesh-wide traffic management, security and policy capabilities in the Istio Service Mesh.",
    		SilenceUsage: true,
    		FParseErrWhitelist: cobra.FParseErrWhitelist{
    			// Allow unknown flags for backward-compatibility.
    			UnknownFlags: true,
    		},
    		PreRunE: func(c *cobra.Command, args []string) error {
    			cmd.AddFlags(c)
    			return nil
    		},
    	}
    
    	discoveryCmd := newDiscoveryCommand()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top