Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for somme (0.06 sec)

  1. cluster/gce/gci/configure-helper.sh

      iptables -w ${command} OUTPUT -p tcp --dport 80 -d ${METADATA_SERVER_IP} -m owner ${invert:-} --uid-owner=${METADATA_SERVER_ALLOWED_UID_RANGE:-0-2999} -j ${action}
    }
    
    # WARNING: DO NOT USE THE FILTER TABLE! Some implementations of network policy
    # think they own it and will stomp all over your changes. At this time, the
    # mangle table is less contentious so use that if possible.
    function config-ip-firewall {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    // windynrelocsym examines a text symbol 's' and looks for relocations
    // from it that correspond to references to symbols defined in DLLs,
    // then fixes up those relocations as needed. A reference to a symbol
    // XYZ from some DLL will fall into one of two categories: an indirect
    // ref via "__imp_XYZ", or a direct ref to "XYZ". Here's an example of
    // an indirect ref (this is an excerpt from objdump -ldr):
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * are. It is also likely that properties must be specified for jcifs.smb1
     * to function (See <a href="../../overview-summary.html#scp">Setting
     * JCIFS Properties</a>). Here are some examples of SMB URLs with brief
     * descriptions of what they do:
     *
     * <p>[1] This URL scheme is based largely on the <i>SMB
     * Filesharing URL Scheme</i> IETF draft.
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "leaf3").publish()
            mavenRepo.module("org", "leaf4").publish()
    
            createDirs("api", "impl", "some", "some/deeply", "some/deeply/nested")
            settingsFile << "include 'api', 'impl', 'some:deeply:nested'; rootProject.name='root'"
    
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      //  Tests the case when an outside compiled op with some dynamically shaped input but static output
      //  comes before an outside compiled op with some dynamically shaped input/output.  This ensures that
      //  for the second outside compiled op, all of the inputs are explicitly provided.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        type (e.g., for tensor lists).
    
        During shape refinement this pass may insert additional cast operations as
        well as fold some constant shape computations to enable more exact shape
        inference. Therefore it does do some mutation of the graph. Constant folding
        required to produce more exact shapes is also performed but these values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    						},
    						Groups: apiserver.PrefixedClaimOrExpression{
    							Claim:  "groups",
    							Prefix: pointer.String(""),
    						},
    					},
    				},
    				Client: &http.Client{Transport: errTransport("some unexpected oidc error")}, // return an error that we can assert against
    				now:    func() time.Time { return now },
    			},
    			signingKey: loadRSAPrivKey(t, "testdata/rsa_1.pem", jose.RS256),
    			pubKeys: []*jose.JSONWebKey{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    				Bind:       config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    				PostBind:   config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    			},
    		},
    		{
    			name: "disable MultiPoint plugin at some extension points",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: testPlugin},
    					},
    				},
    				PreScore: config.PluginSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    					},
    				},
    				UpdatedAt: acc.UpdatedAt,
    			}); err != nil {
    				return errSRIAMError(err)
    			}
    		}
    	}
    
    	// Next should be Groups for some of these users, LDAP might have some Group
    	// DNs here
    	{
    		groups := make(map[string]GroupInfo)
    		err := globalIAMSys.store.loadGroups(ctx, groups)
    		if err != nil {
    			return errSRBackendIssue(err)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	// The remaining 22+ bits give a method number for method values.
    	// If flag.kind() != Func, code can assume that flagMethod is unset.
    	flag
    
    	// A method value represents a curried method invocation
    	// like r.Read for some receiver r. The typ+val+flag bits describe
    	// the receiver r, but the flag's Kind bits say Func (methods are
    	// functions), and the top bits of the flag give the method number
    	// in r's type's method table.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top