Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for toName (0.2 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

        }
    
        List<BinaryInfo.Symbol> listDebugSymbols() {
            throw new UnsupportedOperationException("Not yet implemented")
        }
    
        String getSoName() {
            throw new UnsupportedOperationException("soname is not relevant on windows")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    					},
    					TransportSocket: createTransportSocket(listenerSettings.TLSEnabled),
    				},
    			},
    			StatPrefix: fmt.Sprintf("http_forward_proxy_%d", listenerSettings.Port),
    		})
    	}
    	return protomarshal.ToYAML(bootstrap)
    }
    
    var dynamicForwardProxyCacheConfig = &envoy_common_dynamic_forward_proxy.DnsCacheConfig{
    	Name: "dynamic_forward_proxy_cache_config",
    	TypedDnsResolverConfig: &envoy_core.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/apply.go

    			}
    		}
    		return errs.ToError()
    	}
    
    	objectStr := fmt.Sprintf("%s/%s/%s", obj.GetKind(), obj.GetNamespace(), obj.GetName())
    
    	if scope.DebugEnabled() {
    		scope.Debugf("Processing object:\n%s\n\n", util.ToYAML(obj))
    	}
    
    	if h.opts.DryRun {
    		scope.Infof("Not applying object %s because of dry run.", objectStr)
    		return nil
    	}
    
    	return h.serverSideApply(obj)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            expect:
            doesNotMatch("name\\othername", "other")
        }
    
        def "reports potential matches"() {
            expect:
            matcher.find("name", ["tame", "lame", "other"]) == null
            matcher.matches.empty
            matcher.candidates == ["tame", "lame"] as Set
        }
    
        def "does not select map entry when no matches"() {
            expect:
            matcher.find("soNa", ["does not match" : 9]) == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. operator/pkg/util/yaml_test.go

    foo: yaml
    `,
    		},
    		{
    			desc:        "expected-err-nil",
    			inVals:      nil,
    			expectedOut: "null\n",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			if got := ToYAML(tt.inVals); got != tt.expectedOut {
    				t.Errorf("%s: expected out %v got %s", tt.desc, tt.expectedOut, got)
    			}
    		})
    	}
    }
    
    func TestOverlayTrees(t *testing.T) {
    	tests := []struct {
    		desc            string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	PTRACE_KILL    = 0x8
    )
    
    type PtraceLwpInfoStruct struct {
    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	PTRACE_KILL    = 0x8
    )
    
    type PtraceLwpInfoStruct struct {
    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	PTRACE_KILL    = 0x8
    )
    
    type PtraceLwpInfoStruct struct {
    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top