Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for IsVisible (0.45 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    		return false
    	}
    	// Only send endpoints from the networks in the network view requested by the proxy.
    	// The default network view assigned to the Proxy is nil, in that case match any network.
    	if !b.proxyView.IsVisible(ep) {
    		// Endpoint's network doesn't match the set of networks that the proxy wants to see.
    		return false
    	}
    	// If the downstream service is configured as cluster-local, only include endpoints that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * to. The default value is true.
         *
         * @return true if this is a visible configuration.
         */
        boolean isVisible();
    
        /**
         * Sets the visibility of this configuration. When visible is set to true, this configuration is visible outside
         * the project it belongs to. The default value is true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    					),
    				},
    			},
    			expect: false,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			isVisible := c.pushContext.IsServiceVisible(c.service, targetNamespace)
    
    			g := NewWithT(t)
    			g.Expect(isVisible).To(Equal(c.expect))
    		})
    	}
    }
    
    func serviceNames(svcs []*Service) []string {
    	var s []string
    	for _, ss := range svcs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall(procIsWindowUnicode.Addr(), 1, uintptr(hwnd), 0, 0)
    	isUnicode = r0 != 0
    	return
    }
    
    func IsWindowVisible(hwnd HWND) (isVisible bool) {
    	r0, _, _ := syscall.Syscall(procIsWindowVisible.Addr(), 1, uintptr(hwnd), 0, 0)
    	isVisible = r0 != 0
    	return
    }
    
    func MessageBox(hwnd HWND, text *uint16, caption *uint16, boxtype uint32) (ret int32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	IsWindow(hwnd HWND) (isWindow bool) = user32.IsWindow
    //sys	IsWindowUnicode(hwnd HWND) (isUnicode bool) = user32.IsWindowUnicode
    //sys	IsWindowVisible(hwnd HWND) (isVisible bool) = user32.IsWindowVisible
    //sys	GetGUIThreadInfo(thread uint32, info *GUIThreadInfo) (err error) = user32.GetGUIThreadInfo
    //sys	GetLargePageMinimum() (size uintptr)
    
    // Volume Management Functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.kotlin.dsl.ConfigurationDeprecatedExtensionsKt.isVisible(org.gradle.api.NamedDomainObjectProvider)> does not have raw return type assignable to org.gradle.api.provider.Property in (ConfigurationDeprecatedExtensions.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.maybeUpdateSelectedRow_();},maybeUpdateSelectedRow_(){if(this.selectedTableRowInfo_===undefined)return;function isVisible(rowInfo){if(!rowInfo.htmlNode)return false;return!!rowInfo.htmlNode.parentElement;}
    if(isVisible(this.selectedTableRowInfo_)){this.updateSelectedState_();return;}
    this.removeSelectedState_();let curRowInfo=this.selectedTableRowInfo_;while(curRowInfo&&!isVisible(curRowInfo)){curRowInfo=curRowInfo.parentRowInfo;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top